diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-09-16 09:22:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-09-16 09:22:43 -0400 |
commit | a1694b73632952e15c9d54ae3306e641a8d5e94a (patch) | |
tree | 00dc289a1f3b9b3e161c8f2e859b84a227253903 /src/test/test_parseconf.sh | |
parent | 804260828b13e76aa54fe04789737632d1479eb6 (diff) | |
download | tor-a1694b73632952e15c9d54ae3306e641a8d5e94a.tar.gz tor-a1694b73632952e15c9d54ae3306e641a8d5e94a.zip |
Fix a shellcheck warning in test_parseconf.sh.
I wonder why this didn't show up before.
Diffstat (limited to 'src/test/test_parseconf.sh')
-rwxr-xr-x | src/test/test_parseconf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_parseconf.sh b/src/test/test_parseconf.sh index 2175db48ac..bc526419ca 100755 --- a/src/test/test_parseconf.sh +++ b/src/test/test_parseconf.sh @@ -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="" |