Skip to content

Commit

Permalink
Merge pull request #73 from weaveworks/remove-spurious-go-get
Browse files Browse the repository at this point in the history
Remove spurious `go get` from Makefile
  • Loading branch information
awh authored May 16, 2019
2 parents 1b3d84d + 10443c5 commit c20c9e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ clean:
rm -f cmd/kured/kured
rm -rf ./build

godeps=$(shell go get $1 && go list -f '{{join .Deps "\n"}}' $1 | grep -v /vendor/ | xargs go list -f '{{if not .Standard}}{{ $$dep := . }}{{range .GoFiles}}{{$$dep.Dir}}/{{.}} {{end}}{{end}}')
godeps=$(shell go list -f '{{join .Deps "\n"}}' $1 | grep -v /vendor/ | xargs go list -f '{{if not .Standard}}{{ $$dep := . }}{{range .GoFiles}}{{$$dep.Dir}}/{{.}} {{end}}{{end}}')

DEPS=$(call godeps,./cmd/kured)

Expand Down

0 comments on commit c20c9e9

Please sign in to comment.