Skip to content

Commit

Permalink
bincheck: verbose mode
Browse files Browse the repository at this point in the history
This PR adds the -x flag to make the preparation steps visible in the
logs.

Epic: none
Release note: None
  • Loading branch information
rail committed Feb 5, 2024
1 parent 63dc83b commit ccb1b24
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/release/bincheck/download_binary.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -euo pipefail
set -exuo pipefail

download_and_extract() {
cockroach_version=$1
Expand Down
2 changes: 1 addition & 1 deletion build/release/bincheck/test-linux
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -euo pipefail
set -exuo pipefail
source ./download_binary.sh

if [[ $# -ne 2 ]]
Expand Down
2 changes: 1 addition & 1 deletion build/release/bincheck/test-macos-amd64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -euo pipefail
set -exuo pipefail
source ./download_binary.sh

# Verify arguments.
Expand Down
2 changes: 1 addition & 1 deletion build/release/bincheck/test-macos-arm64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -euo pipefail
set -exuo pipefail
source ./download_binary.sh

# Verify arguments.
Expand Down
2 changes: 1 addition & 1 deletion build/release/bincheck/test-windows
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -euo pipefail
set -exuo pipefail
source ./download_binary.sh

if [[ $# -ne 2 ]]
Expand Down

0 comments on commit ccb1b24

Please sign in to comment.