This commit is contained in:
teldra 2022-02-07 18:12:03 +01:00
parent 80de97d4d7
commit b8e78b9c59

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}"
}