From 55f0dc79e218b8d0876b0b162d1974356a0dcd00 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Wed, 17 Jul 2024 23:31:01 -0700 Subject: [PATCH] Remove set -x (#5165) (cherry picked from commit 6c5b7edee10a99016fb9b46a1bc4a1968d249e98) --- .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"