Fix a shellcheck warning in test_parseconf.sh.

I wonder why this didn't show up before.
This commit is contained in:
Nick Mathewson 2019-09-16 09:22:43 -04:00
parent 804260828b
commit a1694b7363

View File

@ -43,7 +43,7 @@ die() { echo "$1" >&2 ; exit 5; }
# emulate realpath(), in case coreutils or equivalent is not installed.
abspath() {
f=$@
f="$*"
if [ -d "$f" ]; then
dir="$f"
base=""