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

Configure Feed

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

[#21] improve Termux compatibility

Ducky 501a97a6 8bb9575e

+5 -1
+4
src/commands/install.sh
··· 25 25 fi 26 26 27 27 case $_os in 28 + "linux-termux") 29 + install_dir="$PREFIX/local/bin" 30 + ;; 28 31 "haiku") 29 32 install_dir="/boot/system/non-packaged/bin" 30 33 ;; ··· 45 48 atfile.say.debug "Setting up..." 46 49 47 50 [[ -n "$override_path" ]] && install_dir="$override_path" 51 + mkdir -p "$install_dir" 48 52 mkdir -p "$conf_dir" 49 53 # shellcheck disable=SC2154 50 54 touch "$conf_dir/$_file_envvar"
+1 -1
src/entry.sh
··· 50 50 _path_envvar="$_path_home/config/settings" 51 51 ;; 52 52 "linux-termux") 53 - _path_blobs_tmp="/data/data/com.termux/files/tmp" 53 + _path_blobs_tmp="$PREFIX/tmp" 54 54 ;; 55 55 "macos") 56 56 _path_envvar="$_path_home/Library/Application Support"