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

fix: Do not set flags on resize

parent 72085d37
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ resizeDisk() {
      fi
      ;;
    qcow2)
      if ! qemu-img resize -f "$DISK_FMT" -o "$DISK_FLAGS" "$DISK_FILE" "$DISK_SPACE" ; then
      if ! qemu-img resize -f "$DISK_FMT" "$DISK_FILE" "$DISK_SPACE" ; then
        error "$FAIL" && exit 72
      fi
      ;;