diff options
author | Daniel Baumann <daniel@debian.org> | 2010-01-11 23:58:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-01-11 23:59:22 +0100 |
commit | bf343607c12ca5144056742f8da46d526930c98c (patch) | |
tree | fec192a34f8920d5f25f7503b27123ca7b376cc6 /helpers/lh_config | |
parent | 62ed53512dca7010dcea95afeca3b8d91f6fb34e (diff) | |
download | vyos-live-build-bf343607c12ca5144056742f8da46d526930c98c.tar.gz vyos-live-build-bf343607c12ca5144056742f8da46d526930c98c.zip |
Renaming directory that holds automatic scripts (e.g. scripts/config or scripst/clean) to auto for consistency reasons.
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index da417a3d1..3edd816bc 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -10,9 +10,9 @@ set -e # Read meta config -if [ "${1}" != "noautoconfig" ] && [ -x scripts/config ] +if [ "${1}" != "noautoconfig" ] && [ -x auto/config ] then - ./scripts/config ${@} + ./auto/config ${@} fi if [ "${1}" = "noautoconfig" ] @@ -210,14 +210,14 @@ Local_arguments () rmdir --ignore-fail-on-non-empty config fi - if [ -d scripts/functions ] + if [ -d auto/functions ] then - rmdir --ignore-fail-on-non-empty scripts/functions + rmdir --ignore-fail-on-non-empty auto/functions fi - if [ -d scripts ] + if [ -d auto ] then - rmdir --ignore-fail-on-non-empty scripts + rmdir --ignore-fail-on-non-empty auto fi exit 0 @@ -1246,7 +1246,7 @@ LH_SOURCE="${LH_SOURCE}" LH_SOURCE_IMAGES="${LH_SOURCE_IMAGES}" EOF -mkdir -p scripts/functions +mkdir -p auto/functions if [ "${CONFIG}" = "clone" ] # FIXME then |