From b7e27cd84aae5456337779fcc0f457453d4c3a9d Mon Sep 17 00:00:00 2001 From: Roy Clarkson Date: Thu, 19 Nov 2020 16:18:05 -0500 Subject: [PATCH] Remove 'set -u' parameter because staging script is failing on an unbound var Staging for releases is failing on an unbound variable. This is because there is no suffix to append in the new Spring version format. /opt/concourse-java.sh: line 81: $2: unbound variable --- ci/scripts/stage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/scripts/stage.sh b/ci/scripts/stage.sh index fd83b1f..68b6e7e 100755 --- a/ci/scripts/stage.sh +++ b/ci/scripts/stage.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -euo pipefail +set -eo pipefail # shellcheck source=scripts/common.sh source "$(dirname "$0")/common.sh"