[CORE] made configure script explicitly fail when bootstrap.env is not present

This commit is contained in:
Tiago Magalhaes 2020-10-07 13:29:17 +01:00 committed by Hugo Sales
parent 4b4da170f2
commit 4050222bc8
1 changed files with 5 additions and 0 deletions

5
bin/configure vendored
View File

@ -7,6 +7,11 @@ done
cd "${git_dir}" || exit
if [ ! -f ./docker/bootstrap/bootstrap.env ]; then
printf "bootstrap.env missing! Please run the bootstrap_certificates script.\n"
exit 1
fi
. ./docker/bootstrap/bootstrap.env