From 44b7fe7cc6bca3ae2f206b2aaa2e86fbc9b0e86b Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 22 Dec 2023 12:55:28 +0100 Subject: [PATCH] meta: Fix the `tools/build-release.sh` script to match repro instructions --- tools/build-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build-release.sh b/tools/build-release.sh index a75b4287b..81dc210d1 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -161,7 +161,7 @@ for target in $TARGETS; do # Capitalize the first letter of distro D=$(echo "$d" | awk '{print toupper(substr($0,1,1))substr($0,2)}') echo "Building Ubuntu $D Image" - docker run --rm -v "$(pwd)":/build -e FORCE_MTIME="$MTIME" -e FORCE_VERSION="$VERSION" -ti cl-repro-"$d" + docker run --rm -v "$(pwd)":/repo -e FORCE_MTIME="$MTIME" -e FORCE_VERSION="$VERSION" -ti cl-repro-"$d" echo "Ubuntu $D Image Built" done ;; @@ -257,7 +257,7 @@ if [ "$VERIFY_RELEASE" = "true" ]; then fi sumfile="$(pwd)/${sumfile}" cd release/ - # Check that the release captains sum matches. Ignore missing entries as we + # Check that the release captains sum matches. Ignore missing entries as we # do not have a repro build for Fedora. Strictly this is not necessary here # as we compare our checksums with the release captains checksums later, but # it gives a direct hint which specific checksums don't match if so.