diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2015-03-18 00:01:50 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2015-03-18 00:01:50 +0100 |
commit | 52916abbf9aa2123a27c28faafbf658a2ad7c346 (patch) | |
tree | 9d38ad8b1df076d499e90af3b5552f87e0b414ee /backend/modules/bootloader | |
parent | fcbf3d428bcc49d71111d627dd8800e06d4c7c78 (diff) | |
download | acritoxinstaller-52916abbf9aa2123a27c28faafbf658a2ad7c346.zip acritoxinstaller-52916abbf9aa2123a27c28faafbf658a2ad7c346.tar.gz |
fix grub-install --removable typo
Diffstat (limited to 'backend/modules/bootloader')
-rw-r--r-- | backend/modules/bootloader | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/modules/bootloader b/backend/modules/bootloader index 7f74e82..c4f366c 100644 --- a/backend/modules/bootloader +++ b/backend/modules/bootloader @@ -89,7 +89,7 @@ function install_grub() mkdir -p "$TARGET/boot/grub" if [ -d /sys/firmware/efi ]; then if is_removeable "$cfg_bootloader_target" || [ "$apple" = 1 ]; then - chroot_it grub-install --removeable &>/dev/null + chroot_it grub-install --removable &>/dev/null else chroot_it grub-install &>/dev/null fi |