From 45788a8aa4bfc1a24fe6cc9c4c66e2b9efb10c47 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Wed, 17 Jul 2024 18:44:17 -0700 Subject: [PATCH] Remove set -x --- .buildkite/scripts/install-gh.sh | 2 +- .buildkite/scripts/steps/merge.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/scripts/install-gh.sh b/.buildkite/scripts/install-gh.sh index ff52687d02f..7f82aef8376 100644 --- a/.buildkite/scripts/install-gh.sh +++ b/.buildkite/scripts/install-gh.sh @@ -2,7 +2,7 @@ # Required environment variables: # - GH_VERSION - the version of gh to install -set -exuo pipefail +set -euo pipefail echo "--- Install gh cli" diff --git a/.buildkite/scripts/steps/merge.sh b/.buildkite/scripts/steps/merge.sh index 4eda3e2fd3b..49b173a836b 100755 --- a/.buildkite/scripts/steps/merge.sh +++ b/.buildkite/scripts/steps/merge.sh @@ -3,7 +3,7 @@ # Downloads and merges coverage files from multiple steps into a single file (build/TEST-go-unit.cov). # Usage: merge.sh ... Where is the id of the step that contains the coverage artifact.# -set -exuo pipefail +set -euo pipefail COV_ARTIFACT="coverage.out" MERGED_COV_FILE="build/TEST-go-unit.cov"