diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-12 06:06:48 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-08-14 05:44:21 +0200 |
commit | 9ffd1c7c2335f6cbafbbce0493629329090750fb (patch) | |
tree | 7baa190ab3d2a4b0dfc53a7160a2ad16fc8bd2f1 | |
parent | ee81905f8e4f6f4b5822562bac373ecf3775947a (diff) | |
download | vyos-live-build-9ffd1c7c2335f6cbafbbce0493629329090750fb.tar.gz vyos-live-build-9ffd1c7c2335f6cbafbbce0493629329090750fb.zip |
Correct indentation of conditional code.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-x | helpers/lh_source_debian | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_source_debian b/helpers/lh_source_debian index bd515d75f..13d60be87 100755 --- a/helpers/lh_source_debian +++ b/helpers/lh_source_debian @@ -77,10 +77,10 @@ syslinux grub EOF -if [ "${LH_MEMTEST}" != "disabled" ] && [ "${LH_MEMTEST}" != "none" ] -then - echo "${LH_MEMTEST}" >> chroot/root/dpkg-selection.txt -fi + if [ "${LH_MEMTEST}" != "disabled" ] && [ "${LH_MEMTEST}" != "none" ] + then + echo "${LH_MEMTEST}" >> chroot/root/dpkg-selection.txt + fi ;; powerpc) |