Browse Source

Merge pull request #5 from gpmgo/dev

Dev
pull/103/head
Joe Chen 11 years ago
parent
commit
477b792daf
  1. 4
      cmd/get.go

4
cmd/get.go

@ -194,7 +194,7 @@ func downloadPackages(ctx *cli.Context, nodes []*doc.Node) {
log.Trace("Skipped installed package: %s@%s:%s",
n.ImportPath, n.Type, doc.CheckNodeValue(n.Value))
if ctx.Bool("gopath") {
if ctx.Bool("gopath") && com.IsExist(installPath) {
copyToGopath(installPath, gopathDir)
log.Log("Package copied to GOPATH: %s", n.ImportPath)
}
@ -249,7 +249,7 @@ func downloadPackages(ctx *cli.Context, nodes []*doc.Node) {
doc.LocalNodes.SetValue(nod.RootPath, "value", nod.Revision)
}
if ctx.Bool("gopath") {
if ctx.Bool("gopath") && com.IsExist(installPath) {
copyToGopath(installPath, gopathDir)
log.Log("Package copied to GOPATH: %s", n.ImportPath)
}

Loading…
Cancel
Save