diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-11 20:38:34 +0000 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-03-12 09:59:44 +0000 |
commit | a9d8aac959d362fb3ca9882b829fff66ef01f2bc (patch) | |
tree | a4ee0fbea5c9d0673edf7f1cf5e8676466757631 | |
parent | d9f353c7370c34cf9e1a68cee544550678468535 (diff) | |
download | vyos-live-build-a9d8aac959d362fb3ca9882b829fff66ef01f2bc.tar.gz vyos-live-build-a9d8aac959d362fb3ca9882b829fff66ef01f2bc.zip |
grub-efi: fix incorrect error handling
-rwxr-xr-x | scripts/build/binary_grub-efi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/binary_grub-efi b/scripts/build/binary_grub-efi index 7ee834299..e819c9d65 100755 --- a/scripts/build/binary_grub-efi +++ b/scripts/build/binary_grub-efi @@ -110,7 +110,7 @@ _LB_PACKAGES="${_PRE_SB_PACKAGES}" case "${LIVE_IMAGE_TYPE}" in hdd*|netboot) Echo_warning "Bootloader in this image type not yet supported by live-build." - Echo_warning "This would produce a not bootable image, aborting (FIXME)." + Echo_error "This would produce a not bootable image, aborting (FIXME)." exit 1 ;; esac |