Skip to content

Commit

Permalink
Remove set -x (#5165)
Browse files Browse the repository at this point in the history
(cherry picked from commit 6c5b7ed)
  • Loading branch information
ycombinator authored and mergify[bot] committed Jul 18, 2024
1 parent a733286 commit 55f0dc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildkite/scripts/install-gh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion .buildkite/scripts/steps/merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Downloads and merges coverage files from multiple steps into a single file (build/TEST-go-unit.cov).
# Usage: merge.sh <step1> <step2> ... Where <step> 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"
Expand Down

0 comments on commit 55f0dc7

Please sign in to comment.