Unverified Commit f27406eb authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Use different driver for .vhdx files (#1022)

parent a3133605
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -478,7 +478,7 @@ target_fmt="${DISK_FMT:-}"
case "${base,,}" in
  *".vdi" ) source_fmt="vdi" ;;
  *".vhd" ) source_fmt="vpc" ;;
  *".vhdx" ) source_fmt="vpc" ;;
  *".vhdx" ) source_fmt="vhdx" ;;
  *".vmdk" ) source_fmt="vmdk" ;;
  * ) error "Unknown file extension, type \".${base/*./}\" is not recognized!" && exit 33 ;;
esac