terraform-provider-gitea/vendor/github.com/Masterminds/sprig/Makefile

14 lines
175 B
Makefile
Raw Normal View History

2022-04-03 04:07:16 +00: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