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