Skip to content

Commit

Permalink
Merge branch 'maint-0.3.5' into maint-0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dgoulet-tor committed Nov 3, 2021
2 parents 77f5bfa + 1902eda commit 1e3e921
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions doc/asciidoc-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/ci-driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1e3e921

Please sign in to comment.