diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-09 15:40:57 +0100 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-07-09 15:40:57 +0100 |
commit | e0160b3eaf892ee4593ceb3f8206166a4dfa755c (patch) | |
tree | 6859a9b8504f7fd1ea62facf40152433d548754a /helpers | |
parent | 77e3602fa4f663e70189b24b3649f71761f90ce5 (diff) | |
download | vyos-live-build-e0160b3eaf892ee4593ceb3f8206166a4dfa755c.tar.gz vyos-live-build-e0160b3eaf892ee4593ceb3f8206166a4dfa755c.zip |
Fix syntax error in --ignore-system-defaults handling.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index d4a100981..310c7caf3 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -659,7 +659,7 @@ Local_arguments () } # Reading system configuration -if [ -f "${SYSTEM_LH_CONFFILE}" ] && if ! In_list "--ignore-system-defaults" "${@}" +if [ -f "${SYSTEM_LH_CONFFILE}" ] && ! In_list "--ignore-system-defaults" "${@}" then Echo_message "Using system defaults from ${SYSTEM_LH_CONFFILE}" Read_conffile "${SYSTEM_LH_CONFFILE}" |