diff options
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index ff33de9..c0cd618 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -10,10 +10,13 @@ set -e # Read meta config -if [ "${1}" != "autoconfig" ] && [ -x scripts/config ] +if [ "${1}" != "noautoconfig" ] && [ -x scripts/config ] then ./scripts/config ${@} -else +fi + +if [ "${1}" = "noautoconfig" ] +then shift fi |