Merge pull request #672 from 14rcole/find-godeps-fix
Fix bug in find-godeps
This commit is contained in:
commit
0eb5cd527f
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ function find-deps() {
|
|||
local deps=
|
||||
|
||||
# gather imports from cri-o
|
||||
pkgs=$(cd ${basepath}/${srcdir} && go list -f "{{.Imports}}" . | tr ' ' '\n' | grep -v "/vendor/" | grep ${pkgname} | sed -e "s|${pkgname}/||g")
|
||||
pkgs=$(cd ${basepath}/${srcdir} && go list -f "{{.Imports}}" . | tr ' ' '\n' | tr -d '[]' | grep -v "/vendor/" | grep ${pkgname} | sed -e "s|${pkgname}/||g")
|
||||
|
||||
# add each Go import's sources to the deps list,
|
||||
# and recursively get that imports's imports too
|
||||
|
|
Loading…
Reference in a new issue