๐Ÿ“ฆโž”๐Ÿฆ‹ Store and retrieve files on the Atmosphere
35
fork

Configure Feed

Select the types of activity you want to include in your feed.

improve OS overriding

Ducky 19279d51 2bc313b7

+6 -1
+6 -1
src/entry.sh
··· 4 4 5 5 ## Early-start global variables 6 6 7 + ### Permutation 8 + 7 9 _start="$(atfile.util.get_date "" "%s")" # 1 8 10 _envvar_prefix="ATFILE" # 2 9 11 _debug="$(atfile.util.get_envvar "${_envvar_prefix}_DEBUG" "$([[ $ATFILE_DEVEL == 1 ]] && echo 1 || echo 0)")" # 3 12 + _force_os="$(atfile.util.get_envvar "${_envvar_prefix}_FORCE_OS")" # 3 13 + 14 + ### Combination 15 + 10 16 _command="$1" 11 17 _command_args=("${@:2}") 12 18 _os="$(atfile.util.get_os)" ··· 181 187 _force_meta_repo="$(atfile.util.get_envvar "${_envvar_prefix}_FORCE_META_REPO")" 182 188 _force_meta_year="$(atfile.util.get_envvar "${_envvar_prefix}_FORCE_META_YEAR")" 183 189 _force_now="$(atfile.util.get_envvar "${_envvar_prefix}_FORCE_NOW")" 184 - _force_os="$(atfile.util.get_envvar "${_envvar_prefix}_FORCE_OS")" 185 190 _force_version="$(atfile.util.get_envvar "${_envvar_prefix}_FORCE_VERSION")" 186 191 _max_list="$(atfile.util.get_envvar "${_envvar_prefix}_MAX_LIST" "$_max_list_default")" 187 192 _output_json="$(atfile.util.get_envvar "${_envvar_prefix}_OUTPUT_JSON" "$_output_json_default")"