From aeb17cc7536f174feb6fb3bb7322e13e2381651d Mon Sep 17 00:00:00 2001 From: Julien Ponge Date: Thu, 31 Aug 2023 16:02:07 +0200 Subject: [PATCH] More lenient bash scripts due to missing vars in sdkman scripts --- .build/bump-to-next-version.sh | 2 -- .build/bump-to-release-version.sh | 2 -- .build/clear-revapi-justifications.sh | 2 -- .build/deploy-site.sh | 2 -- .build/deploy-snapshot.sh | 1 - .build/install-mkdocs-deps.sh | 2 -- .build/release-with-jreleaser.sh | 2 -- .build/setup-git.sh | 2 -- 8 files changed, 15 deletions(-) diff --git a/.build/bump-to-next-version.sh b/.build/bump-to-next-version.sh index 861e3768a..0b7b584e8 100755 --- a/.build/bump-to-next-version.sh +++ b/.build/bump-to-next-version.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' SNAPSHOT="${NEXT_VERSION}-SNAPSHOT" diff --git a/.build/bump-to-release-version.sh b/.build/bump-to-release-version.sh index 30571f662..3bfc4bd9c 100755 --- a/.build/bump-to-release-version.sh +++ b/.build/bump-to-release-version.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' echo "Bumping version to ${RELEASE_VERSION}" diff --git a/.build/clear-revapi-justifications.sh b/.build/clear-revapi-justifications.sh index 913c9893a..ee443e8d6 100755 --- a/.build/clear-revapi-justifications.sh +++ b/.build/clear-revapi-justifications.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' echo "Clearing difference justifications" diff --git a/.build/deploy-site.sh b/.build/deploy-site.sh index 991a11e34..5b661cc98 100755 --- a/.build/deploy-site.sh +++ b/.build/deploy-site.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' echo "🚧 Building..." diff --git a/.build/deploy-snapshot.sh b/.build/deploy-snapshot.sh index 1ee7215d5..18fa60323 100755 --- a/.build/deploy-snapshot.sh +++ b/.build/deploy-snapshot.sh @@ -1,5 +1,4 @@ #!/usr/bin/env bash -set -e init_gpg() { gpg2 --fast-import --no-tty --batch --yes smallrye-sign.asc diff --git a/.build/install-mkdocs-deps.sh b/.build/install-mkdocs-deps.sh index 40326fec5..5cd5f3445 100755 --- a/.build/install-mkdocs-deps.sh +++ b/.build/install-mkdocs-deps.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' cd documentation pip install pipenv diff --git a/.build/release-with-jreleaser.sh b/.build/release-with-jreleaser.sh index c00c79ba4..1692ca17d 100755 --- a/.build/release-with-jreleaser.sh +++ b/.build/release-with-jreleaser.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' echo "📦 Staging artifacts..." diff --git a/.build/setup-git.sh b/.build/setup-git.sh index 2fa42956a..d9393b91c 100755 --- a/.build/setup-git.sh +++ b/.build/setup-git.sh @@ -1,6 +1,4 @@ #!/bin/bash -set -euo pipefail -IFS=$'\n\t' git config --global user.name "smallrye[bot]" git config --global user.email "smallrye@googlegroups.com"