Merge pull request #403 from technosophos/fix/makefile-flake8

fix(Makefile): add flake8 to bootstrap
pull/398/merge
Matt Butcher 9 years ago
commit 51b495b56e

@ -73,6 +73,7 @@ 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;)
HAS_PIP := $(shell command -v pip;) HAS_PIP := $(shell command -v pip;)
HAS_FLAKE8 := $(shell command -v pip;)
.PHONY: bootstrap .PHONY: bootstrap
bootstrap: bootstrap:
@ -91,6 +92,9 @@ ifndef HAS_GOVET
endif endif
ifndef HAS_GOX ifndef HAS_GOX
go get -u github.com/mitchellh/gox go get -u github.com/mitchellh/gox
endif
ifndef HAS_FLAKE8
pip install flake8
endif endif
glide install glide install
pip install --user -r expansion/requirements.txt pip install --user -r expansion/requirements.txt

Loading…
Cancel
Save