Correct indentation in switch statement
authorPaul Menzel <pmenzel@molgen.mpg.de>
Wed, 2 Jun 2021 14:16:54 +0000 (16:16 +0200)
committerPaul Menzel <pmenzel@molgen.mpg.de>
Wed, 2 Jun 2021 14:17:16 +0000 (16:17 +0200)
Fixes: 01b5b0ff ("Support F2FS in VMs by including f2fs driver in grub-mkimage")

grml-debootstrap

index 52d428f..4dd900d 100755 (executable)
@@ -1546,8 +1546,8 @@ if [[ -z "${GRUB}" ]] || ! dd if="${GRUB}" bs=512 count=1 2>/dev/null | cat -v |
     f2fs)
       chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos f2fs
       ;;
-      # NOTE - we might need to distinguish between further filesystems
-      *)
+    # NOTE - we might need to distinguish between further filesystems
+    *)
       chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos ext2
       ;;
   esac