diff --git a/cmd/helper_windows.go b/cmd/helper_windows.go index 109aa9c89..1de20a3ec 100644 --- a/cmd/helper_windows.go +++ b/cmd/helper_windows.go @@ -18,7 +18,12 @@ func makeLink(srcPath, destPath string) error { // XP. isWindowsXP = true os.RemoveAll(destPath) - return com.CopyDir(srcPath, destPath) + _, dirName := filepath.Split(destPath) + // .vendor dir should not be copy + if dirName != doc.VENDOR { + return com.CopyDir(srcPath, destPath) + } + return nil } func volumnType(dir string) string { diff --git a/gopm.go b/gopm.go index a89bccbc5..6f3cba5aa 100644 --- a/gopm.go +++ b/gopm.go @@ -29,7 +29,7 @@ import ( // Test that go1.1 tag above is included in builds. main.go refers to this definition. const go11tag = true -const APP_VER = "0.5.7.1203" +const APP_VER = "0.5.7.1205" // //cmd.CmdSearch, // cmdClean,