From 61ebeca706d206239418d4d697cca6c9d6901d01 Mon Sep 17 00:00:00 2001 From: Tiago Magalhaes Date: Wed, 7 Oct 2020 13:29:17 +0100 Subject: [PATCH] [CORE] made configure script explicitly fail when bootstrap.env is not present --- bin/configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/configure b/bin/configure index 26fc96699e..0ca5e79d7b 100755 --- a/bin/configure +++ b/bin/configure @@ -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