mirror of https://github.com/go-python/gopy.git
gopy: run go-get on package to wrap to handle deps
Change-Id: If030e5c4bab1401227e2e826c80b61d3053ad743
This commit is contained in:
parent
998c78c822
commit
6422285aab
|
@ -79,11 +79,11 @@ func gopyRunCmdBind(cmdr *commander.Command, args []string) error {
|
|||
)
|
||||
}
|
||||
|
||||
// install it first to tickle the GOPATH cache
|
||||
// go-get it to tickle the GOPATH cache (and make sure it compiles
|
||||
// correctly)
|
||||
cmd := exec.Command(
|
||||
"go", "install", "-buildmode=c-shared",
|
||||
"go", "get", "-buildmode=c-shared",
|
||||
pkg.ImportPath(),
|
||||
//".",
|
||||
)
|
||||
cmd.Stdin = os.Stdin
|
||||
cmd.Stdout = os.Stdout
|
||||
|
|
Loading…
Reference in New Issue