Fix Shellcheck SC2064: Use single quotes on traps

Use single quotes, otherwise this expands now rather than when signalled.

https://github.com/koalaman/shellcheck/wiki/SC2064

Signed-off-by: Dan Callahan <danc@element.io>
pull/11166/head
Dan Callahan 2021-10-18 21:49:09 +01:00
parent 5eb481cd5b
commit 898e3be4c9
No known key found for this signature in database
GPG Key ID: 5FAD56482D9EB851
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ case "$DEB_BUILD_OPTIONS" in
# Copy tests to a temporary directory so that we can put them on the
# PYTHONPATH without putting the uninstalled synapse on the pythonpath.
tmpdir=`mktemp -d`
trap "rm -r $tmpdir" EXIT
trap 'rm -r $tmpdir' EXIT
cp -r tests "$tmpdir"