From ab44ea254108b8e8ddcefb682e4bc51855a49365 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Thu, 17 Mar 2016 17:11:14 -0600 Subject: [PATCH] fix(Makefile): add flake8 to bootstrap flake8 support was recently added, but the bootstrap didn't check or install it. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5488e3d88..c99503ffb 100644 --- a/Makefile +++ b/Makefile @@ -73,6 +73,7 @@ HAS_GOLINT := $(shell command -v golint;) HAS_GOVET := $(shell command -v go tool vet;) HAS_GOX := $(shell command -v gox;) HAS_PIP := $(shell command -v pip;) +HAS_FLAKE8 := $(shell command -v pip;) .PHONY: bootstrap bootstrap: @@ -91,6 +92,9 @@ ifndef HAS_GOVET endif ifndef HAS_GOX go get -u github.com/mitchellh/gox +endif +ifndef HAS_FLAKE8 + pip install flake8 endif glide install pip install --user -r expansion/requirements.txt