summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2015-03-18 00:01:50 +0100
committerAndreas Loibl <andreas@andreas-loibl.de>2015-03-18 00:01:50 +0100
commit52916abbf9aa2123a27c28faafbf658a2ad7c346 (patch)
tree9d38ad8b1df076d499e90af3b5552f87e0b414ee
parentfcbf3d428bcc49d71111d627dd8800e06d4c7c78 (diff)
downloadacritoxinstaller-52916abbf9aa2123a27c28faafbf658a2ad7c346.zip
acritoxinstaller-52916abbf9aa2123a27c28faafbf658a2ad7c346.tar.gz
fix grub-install --removable typo
-rw-r--r--backend/modules/bootloader2
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