aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2021-11-03 09:47:43 -0400
committerDavid Goulet <dgoulet@torproject.org>2021-11-03 09:47:43 -0400
commit1e3e921d7d2e7bce2f2b7e35ca085a745d242b66 (patch)
tree942e0a4b57d9e1d193f28c16a01098c50edd385c
parent77f5bfa60e0030d6c26eb01ea5fb1a04e0b2d6bb (diff)
parent1902edaf52b66145b0222c6586c2acb9d71980f0 (diff)
downloadtor-1e3e921d7d2e7bce2f2b7e35ca085a745d242b66.tar.gz
tor-1e3e921d7d2e7bce2f2b7e35ca085a745d242b66.zip
Merge branch 'maint-0.3.5' into maint-0.4.5
-rwxr-xr-xdoc/asciidoc-helper.sh5
-rwxr-xr-xscripts/ci/ci-driver.sh2
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/asciidoc-helper.sh b/doc/asciidoc-helper.sh
index 10604d31cf..3706ca2e14 100755
--- a/doc/asciidoc-helper.sh
+++ b/doc/asciidoc-helper.sh
@@ -12,7 +12,8 @@ if [ $# != 3 ]; then
exit 1;
fi
-export SOURCE_DATE_EPOCH=$(git show --no-patch --format='%ct')
+SOURCE_DATE_EPOCH="$(git show --no-patch --format='%ct')"
+export SOURCE_DATE_EPOCH
output=$3
@@ -21,7 +22,7 @@ if [ "$1" = "html" ]; then
base=${output%%.html.in}
if [ "$2" != none ]; then
- TZ=UTC "$2" -f "$(dirname $0)/nofooter.conf" -d manpage -o "$output" "$input";
+ TZ=UTC "$2" -f "$(dirname "$0")/nofooter.conf" -d manpage -o "$output" "$input";
else
echo "==================================";
echo;
diff --git a/scripts/ci/ci-driver.sh b/scripts/ci/ci-driver.sh
index c390c644ae..66c8f2ec26 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.