diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-08 13:21:06 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-08 13:21:06 +0200 |
commit | 3bbcedf5aa5e832e6dcef5b0214208da4b57348c (patch) | |
tree | dd06ffa8d95baab29923041fbc7daa660a825919 /artixinstall | |
parent | 32a41ab28da1932894ce8abcf9c06ccc4c9ba06a (diff) |
invalid fzf selections terminate script
Diffstat (limited to 'artixinstall')
-rwxr-xr-x | artixinstall | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/artixinstall b/artixinstall index 9719d96..c8e603e 100755 --- a/artixinstall +++ b/artixinstall @@ -14,9 +14,7 @@ pacman -S --needed --noconfirm parted fzf # Config questions # -while [ -z "${DRIVE}" ]; do - DRIVE=$(lsblk | grep disk | fzf --disabled) -done +DRIVE=$(lsblk | grep disk | fzf --disabled) if [[ "${DRIVE}" == "/dev/mmcblk"* ]] | [[ "${DRIVE}" == "/dev/nvme"* ]]; then PART_PREFIX="${DRIVE}p" |