diff options
author | Daniel Baumann <daniel@debian.org> | 2010-01-11 23:58:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:03 +0100 |
commit | 4a3d0ebf17d290053016e316e1c1cee91197fa56 (patch) | |
tree | fec192a34f8920d5f25f7503b27123ca7b376cc6 /helpers/lh_clean | |
parent | cf424ab6e6c8f4aad6a127b6c9880bfd0612af94 (diff) | |
download | live-build-4a3d0ebf17d290053016e316e1c1cee91197fa56.zip live-build-4a3d0ebf17d290053016e316e1c1cee91197fa56.tar.gz |
Renaming directory that holds automatic scripts (e.g. scripts/config or scripst/clean) to auto for consistency reasons.
Diffstat (limited to 'helpers/lh_clean')
-rwxr-xr-x | helpers/lh_clean | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/helpers/lh_clean b/helpers/lh_clean index 29bddbd..8f74209 100755 --- a/helpers/lh_clean +++ b/helpers/lh_clean @@ -10,9 +10,9 @@ set -e # Read meta config -if [ "${1}" != "noautoconfig" ] && [ -x scripts/clean ] +if [ "${1}" != "noautoconfig" ] && [ -x auto/clean ] then - ./scripts/clean ${@} + ./auto/clean ${@} fi if [ "${1}" = "noautoconfig" ] @@ -59,9 +59,9 @@ do LH=1 "${0}" noautoconfig --stage LH=1 "${0}" noautoconfig --source - if [ -d scripts ] + if [ -d auto ] then - rmdir --ignore-fail-on-non-empty scripts + rmdir --ignore-fail-on-non-empty auto fi ;; @@ -111,7 +111,7 @@ do LH=1 "${0}" --all LH=1 "${0}" --cache - if [ -e scripts/config ] + if [ -e auto/config ] then rm -f .stage/config fi |