aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorThéo Zimmermann2018-09-02 11:01:10 +0200
committerThéo Zimmermann2018-09-02 11:02:39 +0200
commit42b84104e9a3278c024a9d70e0cb32e3d277a8ae (patch)
tree2b3532ea06967cae62d12f971e69361d9d9ab7a9 /dev
parent74ae2fa27c65030e80dc42abd36a6bf0af40e91d (diff)
Fix the order of sourcing of overlays in Windows build script as well.
Diffstat (limited to 'dev')
-rw-r--r--dev/build/windows/makecoq_mingw.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/build/windows/makecoq_mingw.sh b/dev/build/windows/makecoq_mingw.sh
index 60108cda4f..8a49b97dac 100644
--- a/dev/build/windows/makecoq_mingw.sh
+++ b/dev/build/windows/makecoq_mingw.sh
@@ -1448,10 +1448,10 @@ function make_addons {
export CI_BRANCH=""
export CI_PULL_REQUEST=""
fi
- . /build/ci-basic-overlay.sh
for overlay in /build/user-overlays/*.sh; do
. "$overlay"
done
+ . /build/ci-basic-overlay.sh
for addon in $COQ_ADDONS; do
"make_addon_$addon"