mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
18 lines
264 B
Makefile
18 lines
264 B
Makefile
GO = GO111MODULE=on GOFLAGS=-mod=vendor go
|
|
|
|
.PHONY: deps
|
|
deps:
|
|
$(GO) mod download
|
|
$(GO) mod vendor
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GO) test -v -cover ./...
|
|
|
|
.PHONY: check
|
|
check:
|
|
if [ -d vendor ]; then cp -r vendor/* ${GOPATH}/src/; fi
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(GO) clean
|