This commit is contained in:
teldra 2022-02-07 18:09:19 +01:00
parent 80b1a36ecd
commit 80de97d4d7
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ target_phy_disk() {
local output
DISKS_DETAILS=$(lsblk -l -o KNAME,TYPE,SIZE,MODEL|grep disk)
echo "${DISKS_DETAILS}"
multiplechoice $(echo "${DISKS_DETAILS}"|awk '{print $1}')
multiplechoice "$(echo "${DISKS_DETAILS}"|awk '{print $1}')"
TARGET_PHY_DISK="${output}"
}