๐Ÿ“ฆโž”๐Ÿฆ‹ 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 2cad26b5 5b2cc529

+3 -4
+1 -4
src/entry.sh
··· 228 228 229 229 ## Directory creation 230 230 231 - atfile.say.debug "Creating necessary directories..." 232 231 atfile.util.create_dir "$_path_cache" 233 232 atfile.util.create_dir "$_path_blobs_tmp" 234 233 ··· 236 235 237 236 _prog_hint_jq="https://jqlang.github.io/jq" 238 237 239 - if [[ "$_os" == "haiku" ]]; then 240 - _prog_hint_jq="pkgman install jq" 241 - fi 238 + [[ "$_os" == "haiku" ]] && _prog_hint_jq="pkgman install jq" 242 239 243 240 atfile.util.check_prog "curl" "https://curl.se" 244 241 [[ $_os != "haiku" && $_os != "solaris" ]] && atfile.util.check_prog "file" "https://www.darwinsys.com/file"
+2
src/shared/util.sh
··· 72 72 function atfile.util.create_dir() { 73 73 dir="$1" 74 74 75 + atfile.say.debug "Creating directory: $dir" 76 + 75 77 if ! [[ -d $dir ]]; then 76 78 mkdir -p "$dir" 77 79 # shellcheck disable=SC2181