Skip to content

Commit

Permalink
Merge pull request #686 from thom311/th/script-exit-on-error
Browse files Browse the repository at this point in the history
Let "depoly-setup.sh" and "undeploy.sh" fail on error
  • Loading branch information
SchSeba authored Aug 27, 2024
2 parents cc767ac + 624a16f commit 34dcef5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack/deploy-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# to deploy. It assumes it is capable of login as a
# user who has the cluster-admin role

# set -euxo pipefail
set -eo pipefail

source "$(dirname $0)/common"

Expand Down
3 changes: 2 additions & 1 deletion hack/undeploy.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
#set -euxo pipefail

set -eo pipefail

source "$(dirname $0)/common"

Expand Down

0 comments on commit 34dcef5

Please sign in to comment.