diff --git a/go.mod b/go.mod index 53ca9f09..72ab3bca 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/packer-plugin-vagrant -go 1.18 +go 1.19 require ( github.com/hashicorp/go-version v1.6.0 diff --git a/post-processor/vagrant/libvirt.go b/post-processor/vagrant/libvirt.go index 49459d99..82dcb18c 100644 --- a/post-processor/vagrant/libvirt.go +++ b/post-processor/vagrant/libvirt.go @@ -20,13 +20,13 @@ func lower(c byte) byte { // // Valid units (case-insensitive): // -// B (byte) 1B -// K (kilobyte) 1024B -// M (megabyte) 1024K -// G (gigabyte) 1024M -// T (terabyte) 1024G -// P (petabyte) 1024T -// E (exabyte) 1024P +// B (byte) 1B +// K (kilobyte) 1024B +// M (megabyte) 1024K +// G (gigabyte) 1024M +// T (terabyte) 1024G +// P (petabyte) 1024T +// E (exabyte) 1024P // // The default is M. func sizeInMegabytes(size string) uint64 {