[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 44f51ce715
commit 61ebeca706
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
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