From e500ba524172a6dc549f3f0a357f5dd858f1d140 Mon Sep 17 00:00:00 2001 From: Keith Wall Date: Thu, 11 Jan 2024 09:06:30 +0000 Subject: [PATCH] Quick fix for stage-release.sh - reset nounset (#867) Signed-off-by: Keith Wall --- scripts/stage-release.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/stage-release.sh b/scripts/stage-release.sh index 80d0ee7294..cb1e771dd2 100755 --- a/scripts/stage-release.sh +++ b/scripts/stage-release.sh @@ -8,6 +8,8 @@ set -e SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) . "${SCRIPT_DIR}/common.sh" +# Tmp fix - revert the nounset change made by common to match the expectations of this script. +set +u REPOSITORY="origin" BRANCH_FROM="main"