diff options
author | Daniel Baumann <daniel@debian.org> | 2009-01-30 21:17:00 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:09:40 +0100 |
commit | 730b24850784a6dca39f26c880c8253fb24bdd78 (patch) | |
tree | 32c88d490b6bb6692a116b408e617e0e7a86a9df /helpers/lh_clean | |
parent | 992a145afd7bec1b18d356909392d5c6bf20add5 (diff) | |
download | live-build-730b24850784a6dca39f26c880c8253fb24bdd78.zip live-build-730b24850784a6dca39f26c880c8253fb24bdd78.tar.gz |
Replacing previous attempt of using config.cfg, now using scripts/config.sh and scripts/clean.sh instead.
Diffstat (limited to 'helpers/lh_clean')
-rwxr-xr-x | helpers/lh_clean | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/helpers/lh_clean b/helpers/lh_clean index 1cd18a2..b4cf122 100755 --- a/helpers/lh_clean +++ b/helpers/lh_clean @@ -9,6 +9,14 @@ set -e +# Read meta config +if [ "${1}" != "autoconfig" ] && [ -e scripts/clean.sh ] +then + sh scripts/clean.sh ${@} +else + shift +fi + # Including common functions . "${LH_BASE:-/usr/share/live-helper}"/functions.sh |