godep save。/ ...似乎不适用于https://github.com/hashicorp/terraform

时间:2016-03-03 08:06:01

标签: go terraform

您好我正在关注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 ./...

我收到的包裹很少。 enter image description here

如果我用go get手动更新这个包,那么它看起来是另一个,依此类推...... 请让我知道如何成功运行此感谢

1 个答案:

答案 0 :(得分:1)

godeps要求相关性已经在GOPATH中。如果您尚未下载依赖项(尚未),请先运行

go get ./...

然后你可以运行

godep save ./...