We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff4b90c commit 52fb2f5Copy full SHA for 52fb2f5
1 file changed
chevah_build
@@ -112,7 +112,13 @@ BUILD_FOLDER='build'
112
. ./functions.sh
113
114
# Import build environment variables found through "detect_os" command option.
115
-. ./BUILD_ENV_VARS
+if [ -f ./BUILD_ENV_VARS ]; then
116
+ . ./BUILD_ENV_VARS
117
+else
118
+ (>&2 echo "Missing BUILD_ENV_VARS file!")
119
+ echo "Run './brink.sh detect_os' first, as per the README file..."
120
+ exit 100
121
+fi
122
123
# List of OS packages required for building Python/pyOpenSSL/cryptography etc.
124
# Lately we don't install anything automatically, we just check for the
0 commit comments