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

fix: Use vpc driver for .vhdx files (#1051)

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