1
0
mirror of https://github.com/danog/gojekyll.git synced 2025-01-22 20:21:15 +01:00

Make gets dependencies

This commit is contained in:
Oliver Steele 2017-07-15 17:03:55 -04:00
parent 319d3c4aeb
commit 59316fde63
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,6 @@ before_install:
install:
- make setup
- go get -t ./...
- pip install --user Pygments
- export PATH=$HOME/.local/bin:$PATH

View File

@ -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