diff options
author | Daniel Baumann <daniel@debian.org> | 2010-04-18 14:38:14 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-04-18 14:38:14 +0200 |
commit | 727165a5e8c200cfb12e326fa1aa373812809cb8 (patch) | |
tree | 0eff07f96afbbcc6fad3b8b4422bce97c96b2a34 /helpers/config | |
parent | b910c1bf7dc8f4ba365ec647d517a129ba5311d5 (diff) | |
download | vyos-live-build-727165a5e8c200cfb12e326fa1aa373812809cb8.tar.gz vyos-live-build-727165a5e8c200cfb12e326fa1aa373812809cb8.zip |
Replacing 'noautoconfig' string in auto/ scripts with 'noauto'.
Diffstat (limited to 'helpers/config')
-rwxr-xr-x | helpers/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/config b/helpers/config index bab31b5b0..2a37dbe00 100755 --- a/helpers/config +++ b/helpers/config @@ -10,12 +10,12 @@ set -e # Read meta config -if [ "${1}" != "noautoconfig" ] && [ -x auto/config ] +if [ "${1}" != "noauto" ] && [ -x auto/config ] then ./auto/config ${@} fi -if [ "${1}" = "noautoconfig" ] +if [ "${1}" = "noauto" ] then shift fi |