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:
parent
7d33ae755d
commit
fa7a87bc7c
2 changed files with 4 additions and 0 deletions
|
@ -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 )
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue