We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9488696 commit 94445b2Copy full SHA for 94445b2
hack/.vendor-helpers.sh
@@ -118,6 +118,13 @@ clean() {
118
-path vendor/src/github.com/mattn/go-sqlite3/code
119
)
120
121
+ # This package is required to build the Etcd client,
122
+ # but Etcd hard codes a local Godep full path.
123
+ # FIXME: fix_rewritten_imports fixes this problem in most platforms
124
+ # but it fails in very small corner cases where it makes the vendor
125
+ # script to remove this package.
126
+ # See: https://github.com/docker/docker/issues/19231
127
+ findArgs+=( -or -path vendor/src/github.com/ugorji/go/codec )
128
for import in "${imports[@]}"; do
129
[ "${#findArgs[@]}" -eq 0 ] || findArgs+=( -or )
130
findArgs+=( -path "vendor/src/$import" )
0 commit comments