diff --git a/.travis.yml b/.travis.yml index c46296e..c572432 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,6 @@ before_install: install: - make setup - - go get -t ./... - pip install --user Pygments - export PATH=$HOME/.local/bin:$PATH diff --git a/Makefile b/Makefile index 2a0503b..e9730b0 100644 --- a/Makefile +++ b/Makefile @@ -28,11 +28,12 @@ race: ## build a binary with race detection go build -race ${LDFLAGS} -o ${BINARY}-race ${PACKAGE} setup: ## install dependencies and development tools + go get -t ./... go get -u github.com/alecthomas/gometalinter gometalinter --install install: ## compile and install the executable - go install ${LDFLAGS} ${PACKAGE}/cmd/gojekyll + go install ${LDFLAGS} ${PACKAGE} lint: ## Run all the linters gometalinter ./... --disable=gotype --disable=aligncheck