diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2019-02-02 16:49:19 +0200 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2019-02-02 16:49:19 +0200 |
commit | d7e5086694e722573dc46fd45f1a5571e10d5590 (patch) | |
tree | ab9d7fa22d8efe66a1bd076514b8613b8f84a9c2 | |
parent | f888b3e2ee23f6e0394c9c7589c10e320714deda (diff) | |
download | tor-d7e5086694e722573dc46fd45f1a5571e10d5590.tar.gz tor-d7e5086694e722573dc46fd45f1a5571e10d5590.zip |
Fix one last SC2086
-rwxr-xr-x | src/test/test-network.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-network.sh b/src/test/test-network.sh index e382eec66e..6c678849b6 100755 --- a/src/test/test-network.sh +++ b/src/test/test-network.sh @@ -16,7 +16,7 @@ fi # Do we output anything at all? ECHO="${ECHO:-echo}" # Output is prefixed with the name of the script -myname=$(basename $0) +myname=$(basename "$0") # Save the arguments before we destroy them # This might not preserve arguments with spaces in them |