Skip to content

Commit

Permalink
Remove set -x
Browse files Browse the repository at this point in the history
  • Loading branch information
ycombinator committed Jul 18, 2024
1 parent ca726a2 commit 45788a8
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 45788a8

Please sign in to comment.