Skip to content

Commit fa7a87b

Browse files
author
MarcoFalke
committed
ci: Add missing set -e to 01_base_install.sh
Also, set -x for easier debugging. Also, do the same for ci/test/00_setup_env.sh
1 parent 7d33ae7 commit fa7a87b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

ci/test/00_setup_env.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
export LC_ALL=C.UTF-8
88

9+
set -ex
10+
911
# The root dir.
1012
# The ci system copies this folder.
1113
BASE_ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/../../ >/dev/null 2>&1 && pwd )

ci/test/01_base_install.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
export LC_ALL=C.UTF-8
88

9+
set -ex
10+
911
CFG_DONE="ci.base-install-done" # Use a global git setting to remember whether this script ran to avoid running it twice
1012

1113
if [ "$(git config --global ${CFG_DONE})" == "true" ]; then

0 commit comments

Comments
 (0)