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

Configure Feed

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

various

Ducky 16d5f31a 6a12ac93

+9 -5
+4 -4
src/entry.sh
··· 71 71 _path_cache="$_path_cache/atfile" 72 72 _path_envvar="$(atfile.util.get_envvar "${_envvar_prefix}_PATH_CONF" "$_path_envvar/$_file_envvar")" 73 73 74 - ## CI detection 75 - 76 - atfile.say.debug "Detected CI: $_ci" 77 - 78 74 ## OS detection 79 75 80 76 atfile.say.debug "Detected OS: $_os" ··· 88 84 [[ $_os == "macos" ]] ; then 89 85 _os_supported=1 90 86 fi 87 + 88 + ## CI detection 89 + 90 + [[ -n "$_ci" ]] && atfile.say.debug "Detected CI: $_ci" 91 91 92 92 ## Pipe detection 93 93
+5 -1
src/shared/say.sh
··· 48 48 fi 49 49 50 50 message="${message//\\n/\\n$(atfile.util.repeat_char " " "$prefix_length")}" 51 + message="${prefix}${color_message}$message\033[0m${suffix}" 52 + 53 + [[ -n "$_ci" ]] && message="${message//\\033[0m/}" 51 54 52 - echo -n -e "${prefix}${color_message}$message\033[0m${suffix}" 55 + echo -n -e "$message" 53 56 } 54 57 55 58 function atfile.say.debug() { ··· 58 61 59 62 [[ -z "$prefix" ]] && prefix="Debug" 60 63 64 + # shellcheck disable=SC2154 61 65 if [[ $_debug == 1 ]]; then 62 66 atfile.say "$message" "$prefix" 35 >&2 63 67 fi