mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 15:10:48 +01:00
Fix SC2064 warning
This commit is contained in:
parent
700310df61
commit
9e04a87220
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue