嗨,我正在关注https://github.com/hashicorp/terraform链接。按照给定的部分“添加依赖项”,我已成功运行以下命令

git checkout master
git pull
godep restore -v # flag is optional, enables verbose output
git checkout my-feature-branch
git rebase master

现在当我跑步
godep save ./...

我收到的包裹很少。
go - godep save./…似乎不适用于https://github.com/hashicorp/terraform-LMLPHP

如果我用go get手动更新此程序包,则它看起来又一个,依此类推。
请让我知道如何成功运行此程序,谢谢

最佳答案

godeps要求依赖项已经在GOPATH中。如果尚未下载依赖项,请先运行

go get ./...

那你就可以跑
godep save ./...

关于go - godep save./…似乎不适用于https://github.com/hashicorp/terraform,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35766457/

10-11 06:24