Commit aaf532bd authored by Dave Cunningham's avatar Dave Cunningham

Fix build on GNU make

parent e664836b
...@@ -80,10 +80,10 @@ vet: ...@@ -80,10 +80,10 @@ vet:
done done
@echo ----------------- @echo -----------------
HAS_GLIDE := $(shell command -v glide) HAS_GLIDE := $(shell command -v glide;)
HAS_GOLINT := $(shell command -v golint) HAS_GOLINT := $(shell command -v golint;)
HAS_GOVET := $(shell command -v go tool vet) HAS_GOVET := $(shell command -v go tool vet;)
HAS_GOX := $(shell command -v gox) HAS_GOX := $(shell command -v gox;)
.PHONY: bootstrap .PHONY: bootstrap
bootstrap: bootstrap:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment