Add sanity check on config type to build for l-b-cgi.

This commit is contained in:
Richard Nelson 2013-02-23 10:11:02 -06:00 committed by Daniel Baumann
parent 0e5cfdb747
commit c84dfffe31
1 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,12 @@ then
git clone ${_LB_GIT} "${_TEMPDIR}"/"${_BUILD}" >> /var/log/live
_ERRORGIT="${?}"
# Sanity check to default to something since we are going to build from git clone.
if [ -z "${_LB_CONFIG}" ]
then
_LB_CONFIG="standard"
fi
# Now set a variable for the correct build path
_BUILD_PATH="${_TEMPDIR}/${_BUILD}/images/${_LB_CONFIG}"