diff options
author | David Goulet <dgoulet@torproject.org> | 2021-11-03 09:47:30 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2021-11-03 09:47:30 -0400 |
commit | 1902edaf52b66145b0222c6586c2acb9d71980f0 (patch) | |
tree | 93ae767c26b191dd24073f53e07d54c07a51e992 /scripts | |
parent | 5c8deef9b67f7bf983dd96164c118317422c236b (diff) | |
download | tor-1902edaf52b66145b0222c6586c2acb9d71980f0.tar.gz tor-1902edaf52b66145b0222c6586c2acb9d71980f0.zip |
shellcheck: Make it happy on couple scripts
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/ci-driver.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/ci-driver.sh b/scripts/ci/ci-driver.sh index f99e45e6f2..61f97a91d4 100755 --- a/scripts/ci/ci-driver.sh +++ b/scripts/ci/ci-driver.sh @@ -287,7 +287,7 @@ fi ############################################################################# # Determine the version of Tor. -TOR_VERSION=$(grep -m 1 AC_INIT ${CI_SRCDIR}/configure.ac | sed -e 's/.*\[//; s/\].*//;') +TOR_VERSION=$(grep -m 1 AC_INIT "${CI_SRCDIR}"/configure.ac | sed -e 's/.*\[//; s/\].*//;') # Use variables like these when we need to behave differently depending on # Tor version. Only create the variables we need. |