Restore the conditional verbosity in bash scripts

Became unconditional in 422bafd6ea

Change-Id: I6e9b32d1ca4651daea26330c96c63d40e63cec00
This commit is contained in:
Dmitry Tantsur 2021-02-15 17:44:54 +01:00
parent b266ee92f0
commit d048a5f4c4
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -euxo pipefail
set -euo pipefail
. $(dirname $0)/install-deps.sh
# NOTE(pas-ha) the above exports some useful variables like

View File

@ -1,6 +1,6 @@
#!/bin/bash
set -euxo pipefail
set -euo pipefail
if [[ "${BIFROST_TRACE:-}" == true ]]; then
set -x