Fix shellcheck errors (includes a bug in setup-user)

This commit is contained in:
0x1eef 2024-07-26 22:36:35 -03:00
parent c6e83bea5e
commit b8bef1f953
9 changed files with 9 additions and 2 deletions

View file

@ -17,4 +17,4 @@ deinstall:
rm -rf $(SHAREDIR)
shellcheck:
find bin/ libexec/ -type f -exec shellcheck "{}" \;
find bin/ libexec/ -type f -exec shellcheck -x "{}" \;

View file

@ -8,6 +8,7 @@ libexec="${localbase}"/libexec/sourcezap
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
##

View file

@ -13,6 +13,7 @@ revision="${installdir}"/.sourcezap
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
require_dependency()

View file

@ -11,6 +11,7 @@ branch=$2
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
##

View file

@ -12,6 +12,7 @@ branch=$3
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
##

View file

@ -13,6 +13,7 @@ revfile=$3
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
perform_update()

View file

@ -10,6 +10,7 @@ gitdir=$1
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
##

View file

@ -10,6 +10,7 @@ installdir=$2
##
# functions
# shellcheck source=/dev/null
. "${libexec}"/functions/print.sh
erase()

View file

@ -16,7 +16,7 @@ user="_sourcezap"
if id -u "${user}" > /dev/null 2>&1; then
printok "${user} user exists"
else
pw useradd
pw useradd \
-n "${user}" \
-c "sourcezap user" \
-m \