Commit 54adabfd authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/vmware: sleep before cleaning files on Windows

parent d76b7e8c
...@@ -8,6 +8,7 @@ import ( ...@@ -8,6 +8,7 @@ import (
"github.com/mitchellh/packer/packer" "github.com/mitchellh/packer/packer"
"log" "log"
"path/filepath" "path/filepath"
"runtime"
"strings" "strings"
"time" "time"
) )
...@@ -120,6 +121,13 @@ LockWaitLoop: ...@@ -120,6 +121,13 @@ LockWaitLoop:
} }
} }
if runtime.GOOS == "windows" {
// Windows takes a while to yield control of the files when the
// process is exiting. We just sleep here. In the future, it'd be
// nice to find a better solution to this.
time.Sleep(5 * time.Second)
}
log.Println("VM shut down.") log.Println("VM shut down.")
return multistep.ActionContinue return multistep.ActionContinue
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment