tor

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

commit 9e04a8722081cd761ee3a2e173b53c7859a8c916
parent 700310df613e379dc1930917f0f8a25f0c894a52
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Wed,  3 Apr 2019 17:58:05 +0300

Fix SC2064 warning

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

diff --git a/src/test/test_key_expiration.sh b/src/test/test_key_expiration.sh @@ -60,7 +60,7 @@ if [ ! -d "$DATA_DIR" ]; then echo "Failure: mktemp invocation result doesn't point to directory" >&2 exit 3 fi -trap "rm -rf '$DATA_DIR'" 0 +trap 'rm -rf "$DATA_DIR"' 0 # Use an absolute path for this or Tor will complain DATA_DIR=$(cd "${DATA_DIR}" && pwd)