diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-27 16:17:02 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-27 16:17:02 +0100 |
commit | 8e0600dadeaf85411ae6ff54836affa83eaa04bb (patch) | |
tree | 4b6e504fc0147422bf2e71191f94e790477ac16a | |
parent | Removed useless \ (diff) | |
download | arch-installer-8e0600dadeaf85411ae6ff54836affa83eaa04bb.tar.gz arch-installer-8e0600dadeaf85411ae6ff54836affa83eaa04bb.tar.bz2 arch-installer-8e0600dadeaf85411ae6ff54836affa83eaa04bb.tar.xz arch-installer-8e0600dadeaf85411ae6ff54836affa83eaa04bb.tar.zst arch-installer-8e0600dadeaf85411ae6ff54836affa83eaa04bb.zip |
Corrected mistake
Diffstat (limited to '')
-rwxr-xr-x | joes-arch-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/joes-arch-install.sh b/joes-arch-install.sh index deacaeb..6e9f6d2 100755 --- a/joes-arch-install.sh +++ b/joes-arch-install.sh @@ -119,7 +119,7 @@ awk '{print $1"-------("$4")";}' | sed -n "$id"p) " >> blkfile --menu "Choose the drive on which Arch Linux should be installed:" 12 55 4\ $(cat blkfile)\ 3>&1 1>&2 2>&3 3>&-) - drv=$(lsblk | grep disk | awk '{print $1}' | sed -n "$sel"p) + drv="/dev/"$(lsblk | grep disk | awk '{print $1}' | sed -n "$sel"p) rm -f blkfile > /dev/null } |