We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5155df commit 9b3bc4dCopy full SHA for 9b3bc4d
scripts/release.sh
@@ -3,6 +3,7 @@ set -e
3
4
export RELEASE_VERSION="${RELEASE_VERSION:-}"
5
export POST_RELEASE_VERSION="${POST_RELEASE_VERSION:-}"
6
+export DEBUG="${DEBUG:-false}"
7
8
export VERSION="${RELEASE_VERSION}"
9
export FOO_SEC="${FOO_SEC:-}"
@@ -11,6 +12,10 @@ export FOO_PASSPHRASE="${FOO_PASSPHRASE:-}"
11
12
export SONATYPE_USER="${SONATYPE_USER:-}"
13
export SONATYPE_PASSWORD="${SONATYPE_PASSWORD:-}"
14
15
+if [[ "${DEBUG}" == "true" ]]; then
16
+ set -x
17
+fi
18
+
19
temporaryDir="$(mktemp -d)"
20
trap "{ rm -rf ${temporaryDir}; }" EXIT
21
0 commit comments