diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-05-04 17:40:23 +0100 |
---|---|---|
committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-05-04 17:40:23 +0100 |
commit | 976be9f44bca9ee8be7e438348c1068faf50d9c6 (patch) | |
tree | 8f1d83179277e0c026cbb3084d8e40db5670a69b /scripts/build | |
parent | 7ad96bd64418951ab48e6e1c522c501e57b6b9d9 (diff) | |
download | vyos-live-build-976be9f44bca9ee8be7e438348c1068faf50d9c6.tar.gz vyos-live-build-976be9f44bca9ee8be7e438348c1068faf50d9c6.zip |
indentation fix
Gbp-Dch: Ignore
Diffstat (limited to 'scripts/build')
-rwxr-xr-x | scripts/build/binary_hdd | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd index 4781009ce..0a4d3a2fc 100755 --- a/scripts/build/binary_hdd +++ b/scripts/build/binary_hdd @@ -61,21 +61,21 @@ for BOOTLOADER in ${LB_BOOTLOADERS}; do done case ${LB_FIRST_BOOTLOADER} in - syslinux) - case ${LB_BINARY_FILESYSTEM} in - fat*|ntfs) - _BOOTLOADER=syslinux - ;; - ext[234]|btrfs) - _BOOTLOADER=extlinux - ;; - *) - Echo_error "syslinux/extlinux doesn't support ${LB_BINARY_FILESYSTEM}" - exit 1 - ;; - esac - Check_package chroot /usr/bin/${_BOOTLOADER} ${_BOOTLOADER} - ;; + syslinux) + case ${LB_BINARY_FILESYSTEM} in + fat*|ntfs) + _BOOTLOADER=syslinux + ;; + ext[234]|btrfs) + _BOOTLOADER=extlinux + ;; + *) + Echo_error "syslinux/extlinux doesn't support ${LB_BINARY_FILESYSTEM}" + exit 1 + ;; + esac + Check_package chroot /usr/bin/${_BOOTLOADER} ${_BOOTLOADER} + ;; esac # Restoring cache |