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