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
This commit is contained in:
Roy Clarkson
2020-11-19 16:18:05 -05:00
parent 64195087b3
commit b7e27cd84a

View File

@@ -1,5 +1,5 @@
#!/bin/bash
set -euo pipefail
set -eo pipefail
# shellcheck source=scripts/common.sh
source "$(dirname "$0")/common.sh"