diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-01-26 15:08:12 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-01-26 15:08:12 +0100 |
commit | f1d310658f8f8d7b1c1c7cf802cb98a451a61ed1 (patch) | |
tree | 953780c981faa1608ed735e203bd55a5db56c407 /scripts/06-dataproc-update-cluster.sh | |
parent | e7bbd6ea60fc40e8d9a31ece57b1fcc7c170f0da (diff) |
Add debug env on scripts
Diffstat (limited to 'scripts/06-dataproc-update-cluster.sh')
-rwxr-xr-x | scripts/06-dataproc-update-cluster.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/06-dataproc-update-cluster.sh b/scripts/06-dataproc-update-cluster.sh index 8714e7d..dcf92e2 100755 --- a/scripts/06-dataproc-update-cluster.sh +++ b/scripts/06-dataproc-update-cluster.sh @@ -2,6 +2,10 @@ set -eu +if [ ${DEBUG:+1} ]; then + set -xo pipefail +fi + if [ "$#" -ne 3 ]; then echo "Usage: 'sh ${PWD}/$0 <num-workers> <master-machine> <worker-machine>'" exit 1 |