Adding autoconfig support to lh_build as well.
This commit is contained in:
parent
695cdf1530
commit
285b6ed834
|
@ -12,6 +12,17 @@ set -e
|
|||
# Including common functions
|
||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
||||
|
||||
# Read meta config
|
||||
if [ "${1}" != "noautoconfig" ] && [ -x scripts/build ]
|
||||
then
|
||||
./scripts/build ${@}
|
||||
fi
|
||||
|
||||
if [ "${1}" = "noautoconfig" ]
|
||||
then
|
||||
shift
|
||||
fi
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build a Debian Live system')"
|
||||
HELP=""
|
||||
|
|
Loading…
Reference in New Issue