diff options
Diffstat (limited to 'helpers/build')
-rwxr-xr-x | helpers/build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/helpers/build b/helpers/build index 835ad8e..52400fa 100755 --- a/helpers/build +++ b/helpers/build @@ -12,6 +12,13 @@ set -e # Including common functions . "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh +# Automatically populating config tree +if [ -x auto/config ] && [ ! -e .stage/config ] +then + Echo_message "Automatically populating config tree." + lh config +fi + # Read meta config if [ "${1}" != "noautoconfig" ] && [ -x auto/build ] then |