From d96d597d7427822efa275db40ca9cab7d8474b5d Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sat, 15 Apr 2023 02:56:28 -0400 Subject: [PATCH] installer.sh: fix indentation of messages Co-authored-by: dateiexplorer --- installer.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.sh.in b/installer.sh.in index 9f02475..377f3ff 100644 --- a/installer.sh.in +++ b/installer.sh.in @@ -824,14 +824,14 @@ set_bootloader() { chroot $TARGETDIR grub-install $grub_args $dev >$LOG 2>&1 if [ $? -ne 0 ]; then DIALOG --msgbox "${BOLD}${RED}ERROR:${RESET} \ - failed to install GRUB to $dev!\nCheck $LOG for errors." ${MSGBOXSIZE} +failed to install GRUB to $dev!\nCheck $LOG for errors." ${MSGBOXSIZE} DIE 1 fi echo "Running grub-mkconfig on $TARGETDIR..." >$LOG chroot $TARGETDIR grub-mkconfig -o /boot/grub/grub.cfg >$LOG 2>&1 if [ $? -ne 0 ]; then DIALOG --msgbox "${BOLD}${RED}ERROR${RESET}: \ - failed to run grub-mkconfig!\nCheck $LOG for errors." ${MSGBOXSIZE} +failed to run grub-mkconfig!\nCheck $LOG for errors." ${MSGBOXSIZE} DIE 1 fi }