0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

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
This commit is contained in:
MarcoFalke 2023-05-24 14:52:11 +02:00
parent 7d33ae755d
commit fa7a87bc7c
No known key found for this signature in database
2 changed files with 4 additions and 0 deletions

View file

@ -6,6 +6,8 @@
export LC_ALL=C.UTF-8
set -ex
# The root dir.
# The ci system copies this folder.
BASE_ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/../../ >/dev/null 2>&1 && pwd )

View file

@ -6,6 +6,8 @@
export LC_ALL=C.UTF-8
set -ex
CFG_DONE="ci.base-install-done" # Use a global git setting to remember whether this script ran to avoid running it twice
if [ "$(git config --global ${CFG_DONE})" == "true" ]; then