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

Configure Feed

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

add CI detection

+9
+5
src/entry.sh
··· 13 13 14 14 ### Combination 15 15 16 + _ci="$(atfile.util.get_ci)" 16 17 _command="$1" 17 18 _command_args=("${@:2}") 18 19 _os="$(atfile.util.get_os)" ··· 69 70 _path_blobs_tmp="$_path_blobs_tmp/at-blobs" 70 71 _path_cache="$_path_cache/atfile" 71 72 _path_envvar="$(atfile.util.get_envvar "${_envvar_prefix}_PATH_CONF" "$_path_envvar/$_file_envvar")" 73 + 74 + ## CI detection 75 + 76 + atfile.say.debug "Detected CI: $_ci" 72 77 73 78 ## OS detection 74 79
+4
src/shared/util.sh
··· 199 199 echo "$cdn_uri" 200 200 } 201 201 202 + function atfile.util.get_ci() { 203 + [[ -d "/tangled/workspace" ]] && echo "tangled" 204 + } 205 + 202 206 # TODO: Support BusyBox's shit `date` command 203 207 # `date -u +"$format" -s "1996-08-11 01:23:34"` 204 208 function atfile.util.get_date() {