Skip to content

Commit

Permalink
fix godep wildcard matching bug
Browse files Browse the repository at this point in the history
See bug here: golang/go#11659
  • Loading branch information
lyoshenka committed Sep 7, 2015
1 parent 5309522 commit a18b62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ if test -e $build/Godeps
then
if test "$GO15VENDOREXPERIMENT" = "1"
then
step "Running: go install -v ${FLAGS[@]} $pkgs"
step "Running: go install -v ${FLAGS[@]} $(go list ./... | grep -v /vendor/)"
go install -v "${FLAGS[@]}" $pkgs
else
step "Running: godep go install ${FLAGS[@]} $pkgs"
Expand Down

0 comments on commit a18b62c

Please sign in to comment.