#0000 - Set bash script to fail on error without printing commands

Removed the `-x` flag from `set` to prevent printing each command during execution, improving log readability. The script will still terminate on errors with the `-e` flag.
This commit is contained in:
Guillaume "B.B." Van Hemmen 2024-12-27 13:47:26 +01:00
parent 58986afe32
commit 5e81dc3eba

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
set -ex set -e
helm repo add metallb https://metallb.github.io/metallb helm repo add metallb https://metallb.github.io/metallb
helm repo update helm repo update