Skip to content

Commit b1be4e1

Browse files
committed
fix set_stage_env.sh script to not exit shell ;)
1 parent a0f0789 commit b1be4e1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/set_stage_env.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -e
2+
set -euo pipefail
33

44
export VAULT_ADDR="https://vault.devshift.net"
55
export VAULT_TOKEN="$(vault login -method=oidc -token-only)"
@@ -12,5 +12,4 @@ unset VAULT_ADDR VAULT_TOKEN
1212
export CAD_EXPERIMENTAL_ENABLED=true
1313
export BACKPLANE_PROXY=http://squid.corp.redhat.com:3128
1414

15-
echo
16-
15+
set +euo pipefail

0 commit comments

Comments
 (0)