diff --git a/vagrant/process_image.go b/vagrant/process_image.go index 8e4c60e..6a8d8cd 100644 --- a/vagrant/process_image.go +++ b/vagrant/process_image.go @@ -1,6 +1,7 @@ package vagrant import ( + "github.com/mhewedy/vermin/progress" "io/ioutil" "os" "path" @@ -10,6 +11,9 @@ import ( func ProcessImage(imagePath string) error { + stop := progress.Show("Convert Vagrant image into Vermin format", false) + defer stop() + imageDir := path.Dir(imagePath) if err := gunzipVagrantBox(imagePath, imageDir); err != nil {