tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit a1694b73632952e15c9d54ae3306e641a8d5e94a
parent 804260828b13e76aa54fe04789737632d1479eb6
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 16 Sep 2019 09:22:43 -0400

Fix a shellcheck warning in test_parseconf.sh.

I wonder why this didn't show up before.

Diffstat:
Msrc/test/test_parseconf.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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=""