1
0
mirror of https://github.com/go-task/task.git synced 2025-03-05 15:05:42 +02:00

14 lines
175 B
Makefile
Raw Normal View History

2017-04-16 17:21:00 -03:00
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