1
0
mirror of https://github.com/go-task/task.git synced 2025-02-07 13:41:53 +02:00
2017-04-16 17:21:00 -03:00

14 lines
175 B
Makefile

HAS_GLIDE := $(shell command -v glide;)
.PHONY: test
test:
go test -v .
.PHONY: setup
setup:
ifndef HAS_GLIDE
go get -u github.com/Masterminds/glide
endif
glide install