diff options
author | Dan Callahan <danc@element.io> | 2021-10-18 16:55:18 +0100 |
---|---|---|
committer | Dan Callahan <danc@element.io> | 2021-10-22 23:08:53 +0100 |
commit | 64adbb7b5425bb618077e1ab85faede1301de024 (patch) | |
tree | 8f8ccf69277819fa73cad55c08e69c720b1dee1c /debian | |
parent | Fix Shellcheck SC2164: exit in case cd fails. (diff) | |
download | synapse-64adbb7b5425bb618077e1ab85faede1301de024.tar.xz |
Fix Shellcheck SC2046: Quote to prevent word split
Quote this to prevent word splitting https://www.shellcheck.net/wiki/SC2046 Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/test/provision.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/test/provision.sh b/debian/test/provision.sh index a5c7f59712..9dc8ab671c 100644 --- a/debian/test/provision.sh +++ b/debian/test/provision.sh @@ -10,7 +10,7 @@ set -e apt-get update apt-get install -y lsb-release -deb=`ls /debs/matrix-synapse-py3_*+$(lsb_release -cs)*.deb | sort | tail -n1` +deb=`ls "/debs/matrix-synapse-py3_*+$(lsb_release -cs)*.deb" | sort | tail -n1` debconf-set-selections <<EOF matrix-synapse matrix-synapse/report-stats boolean false |