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

Configure Feed

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

[#16] atfile: fix/ignore shellcheck warnings

Ducky 49201ff6 4156be6c

+4 -1
+4 -1
atfile.sh
··· 54 54 exit 255 55 55 } 56 56 57 - if [[ "$0" != "$BASH_SOURCE" ]]; then 57 + if [[ "${BASH_SOURCE[0]}" != "$0" ]]; then 58 58 atfile.devel.die "Unable to source" 59 59 fi 60 60 61 + # shellcheck disable=SC2034 61 62 ATFILE_DEVEL=1 62 63 ATFILE_DEVEL_DIR="$(dirname "$(realpath "$0")")" 64 + # shellcheck disable=SC2034 63 65 ATFILE_DEVEL_ENTRY="$(realpath "$0")" 64 66 65 67 if [ ! -x "$(command -v git)" ]; then ··· 89 91 atfile.devel.die "Unable to find source for '$path'" 90 92 fi 91 93 94 + # shellcheck disable=SC1090 92 95 source "$path" 93 96 done