File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,8 @@ go/deps-build:
3232## Install development dependencies
3333go/deps-dev: $(GO)
3434 $(call assert-set,GO)
35- $(GO) get -u -d -v "golang.org/x/lint/golint"
36- $(GO) get -d -v github.com/mitchellh/gox
37- $(GO) install -v github.com/mitchellh/gox
35+ $(GO) get -u -v golang.org/x/lint/golint
36+ $(GO) get -u -v github.com/mitchellh/gox
3837
3938## Clean compiled binary
4039go/clean:
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ go/lint: $(GO) go/vet
66## Vet code
77go/vet: $(GO)
88 $(call assert-set,GO)
9- find . ! -path "*/vendor/*" ! -path "*/.glide/*" -type f -name '*.go' | xargs -n 1 $(GO) vet -v
9+ find . ! -path "*/vendor/*" ! -path "*/.glide/*" -type f -name '*.go' | xargs $(GO) vet -v
1010
1111## Format code according to Golang convention
1212go/fmt: $(GO)
You can’t perform that action at this time.
0 commit comments