Fix shellcheck error
This commit is contained in:
parent
9f8afa04d5
commit
f3c9cec057
2 changed files with 2 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -21,6 +21,6 @@ deinstall:
|
||||||
rm -rf $(SHAREDIR)
|
rm -rf $(SHAREDIR)
|
||||||
|
|
||||||
shellcheck:
|
shellcheck:
|
||||||
shellcheck bin/portzap
|
shellcheck bin/*
|
||||||
shellcheck libexec/portzap/utils/*
|
shellcheck libexec/portzap/utils/*
|
||||||
shellcheck libexec/portzap/commands/*
|
shellcheck libexec/portzap/commands/*
|
||||||
|
|
|
@ -3,7 +3,7 @@ set -e
|
||||||
|
|
||||||
##
|
##
|
||||||
# variables
|
# variables
|
||||||
localbase="${LOCALBASE:-$(realpath $(dirname $0)/..)}"
|
localbase=${LOCALBASE:-$(realpath "$(dirname "$0")"/..)}
|
||||||
libexec="${localbase}"/libexec/portzap
|
libexec="${localbase}"/libexec/portzap
|
||||||
conf=$(cat "${localbase}"/share/portzap/doas.conf)
|
conf=$(cat "${localbase}"/share/portzap/doas.conf)
|
||||||
doas="${localbase}"/etc/doas.conf
|
doas="${localbase}"/etc/doas.conf
|
||||||
|
|
Loading…
Reference in a new issue