Update create VM

This commit is contained in:
MacRimi 2025-05-07 23:24:09 +02:00
parent 06d492c358
commit f1fcca3473
2 changed files with 3 additions and 2 deletions

View File

@ -195,7 +195,7 @@ function select_linux_custom_iso() {
if [[ ${#ISO_LIST[@]} -eq 0 ]]; then
header_info
msg_error "$(translate "No ISO images found in $ISO_DIR.")"
msg_error "$(translate "No ISO images found in") $ISO_DIR."
sleep 2
return 1
fi

View File

@ -86,7 +86,8 @@ function select_existing_iso() {
done < <(find "$ISO_DIR" -type f -iname "*.iso" ! -iname "virtio*" | sort)
if [[ ${#ISO_LIST[@]} -eq 0 ]]; then
msg_error "$(translate "No ISO images found in $ISO_DIR.")"
header_info
msg_error "$(translate "No ISO images found in") $ISO_DIR."
sleep 2
return 1
fi