aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorThéo Zimmermann2018-09-01 11:14:17 +0200
committerThéo Zimmermann2018-09-01 11:14:17 +0200
commit74ae2fa27c65030e80dc42abd36a6bf0af40e91d (patch)
tree72b46a15fa37d58a003493a58b60232f960283b5 /dev
parent6f1c4ac389e595e09fdf4653847d8c3ccca0befb (diff)
Source basic overlay after user overlays to fix #8375 following #8348.
Diffstat (limited to 'dev')
-rw-r--r--dev/ci/ci-common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh
index 3536cc70b2..7af648f0a6 100644
--- a/dev/ci/ci-common.sh
+++ b/dev/ci/ci-common.sh
@@ -37,12 +37,12 @@ ls "$COQBIN"
# Where we download and build external developments
CI_BUILD_DIR="$PWD/_build_ci"
-# shellcheck source=ci-basic-overlay.sh
-. "${ci_dir}/ci-basic-overlay.sh"
for overlay in "${ci_dir}"/user-overlays/*.sh; do
# shellcheck source=/dev/null
. "${overlay}"
done
+# shellcheck source=ci-basic-overlay.sh
+. "${ci_dir}/ci-basic-overlay.sh"
# [git_download project] will download [project] and unpack it
# in [$CI_BUILD_DIR/project] if the folder does not exist already;