summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-09-16 09:22:43 -0400
committerNick Mathewson <nickm@torproject.org>2019-09-16 09:22:43 -0400
commita1694b73632952e15c9d54ae3306e641a8d5e94a (patch)
tree00dc289a1f3b9b3e161c8f2e859b84a227253903
parent804260828b13e76aa54fe04789737632d1479eb6 (diff)
downloadtor-a1694b73632952e15c9d54ae3306e641a8d5e94a.tar.gz
tor-a1694b73632952e15c9d54ae3306e641a8d5e94a.zip
Fix a shellcheck warning in test_parseconf.sh.
I wonder why this didn't show up before.
-rwxr-xr-xsrc/test/test_parseconf.sh2
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=""