7

こんにちは、hashicorp/terraform に指定された手順に従っており、以下のアクティビティを実行しています

# Get latest master branch's dependencies staged in local $GOPATH
git checkout master
git pull
godep restore -v

# Make your way to the dependency in question and checkout the target ref
pushd $GOPATH/src/github.com/some/dependency
git checkout [latest]

# Head back to Terraform on a feature branch and update the dependncy to the
# version currently in your $GOPATH
popd
git checkout my-feature-branch
godep update github.com/...

この後、Godep.json ファイルが更新されたことを確認できますが、ベンダー フォルダーに変更が見られません。それはまだ古いことを指しています。最新の go-aws-sdk で利用可能な go-aws-sdk を更新しているため、ベンダーからの emr サポートを探しています。go update github.com/... を呼び出すと、godep.json は変更されましたが、 vendor フォルダーは変更されませんでした。誰か理由を教えてください。ありがとう

4

1 に答える 1

2

やり直す必要がありますgodep restore -vupdateファイル内の依存関係のみを更新しGodep.jsonます。

于 2016-03-14T19:16:23.457 に答える