Merge pull request from ehazlett/windows-vbox-share

Windows vbox share
This commit is contained in:
Evan Hazlett 2015-05-05 12:42:21 -07:00
commit 031e257f9c
1 changed files with 4 additions and 1 deletions
drivers/virtualbox

View File

@ -330,10 +330,13 @@ func (d *Driver) Create() error {
var shareName, shareDir string // TODO configurable at some point
switch runtime.GOOS {
case "windows":
shareName = "c/Users"
shareDir = "c:\\Users"
case "darwin":
shareName = "Users"
shareDir = "/Users"
// TODO "linux" and "windows"
// TODO "linux"
}
if shareDir != "" {