1
0
mirror of https://github.com/go-task/task.git synced 2025-12-28 00:33:47 +02:00
Files
Andrey Nering cb95200be3 go mod vendor
2018-10-27 17:02:24 -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