diff options
| author | davidovski <david@davidovski.xyz> | 2022-03-31 00:36:49 +0100 | 
|---|---|---|
| committer | davidovski <david@davidovski.xyz> | 2022-03-31 00:36:49 +0100 | 
| commit | 37d6bf003f15fd9ea24ffc94201fc98e2f697157 (patch) | |
| tree | 588100162e995c4300cd2ae914cfac8bda07fe18 /scripts | |
| parent | dc7e66b46601c34d70945701f929135736ec1392 (diff) | |
fixed grub efi
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/install.sh | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/scripts/install.sh b/scripts/install.sh index f13495a..e26baa5 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -78,8 +78,9 @@ installing_bootloader () {      [ "$r" != "n" ] && {          opts="--target=x86_64-efi" -        read -p "Enter efi partition: " efi_part -        opts="$opts --efi-partition=$efi_part" +        lsblk +        read -p "Enter efi directory: " efi_part +        opts="$opts --efi-directory=$efi_part"          read -p "Removable system? [y]" r          [ "$r" != "n" ] && { @@ -111,6 +112,7 @@ downloading_additional_packages  len=$(echo "$steps" | wc -l)  i=0 +echo "Press [return] to enter configuration"  for step in $steps; do      i=$((i+1)) | 
