mirror of
https://github.com/itzg/mc-router.git
synced 2024-11-22 11:35:14 +01:00
13 lines
203 B
Makefile
13 lines
203 B
Makefile
test: vendor
|
|
go test ./...
|
|
|
|
vendor:
|
|
glide install
|
|
|
|
.PHONY: release
|
|
release: vendor
|
|
curl -sL https://git.io/goreleaser | bash
|
|
|
|
.PHONY: install-dep-mgmt
|
|
install-dep-mgmt:
|
|
curl https://glide.sh/get | sh
|