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

Configure Feed

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

modify updating checking on lifecycle commands

Ducky d9f2ff9e 9232a947

+7 -6
+7 -6
src/entry.sh
··· 245 245 246 246 if [[ $_is_sourced == 0 ]] && [[ $_command == "" || $_command == "help" || $_command == "h" || $_command == "--help" || $_command == "-h" ]]; then 247 247 atfile.help 248 - is_lifecycle_command=1 248 + 249 + atfile.util.print_seconds_since_start_debug 250 + exit 0 249 251 fi 250 252 251 253 if [[ $_command == "update" ]]; then 252 254 atfile.update install 253 - is_lifecycle_command=1 255 + 256 + atfile.util.print_seconds_since_start_debug 257 + exit 0 254 258 fi 255 259 256 260 if [[ $_command == "version" || $_command == "--version" ]]; then 257 261 echo -e "$_version" 258 - atfile.cache.del "update-check" 259 - is_lifecycle_command=1 260 - fi 261 262 262 - if [[ $is_lifecycle_command == 1 ]]; then 263 + atfile.cache.del "update-check" 263 264 atfile.update check-only 264 265 atfile.util.print_seconds_since_start_debug 265 266 exit 0