Select Git revision
XXClient-quick-start-guide.md
Makefile 599 B
.PHONY: update master release setup update_master update_release build
setup:
git config --global --add url."git@gitlab.com:".insteadOf "https://gitlab.com/"
update:
rm -rf vendor/
go mod vendor
-GOFLAGS="" go get -u all
build:
go build ./...
go mod tidy
update_release:
GOFLAGS="" go get -u gitlab.com/elixxir/primitives@release
GOFLAGS="" go get -u gitlab.com/elixxir/comms@release
update_master:
GOFLAGS="" go get -u gitlab.com/elixxir/primitives@master
GOFLAGS="" go get -u gitlab.com/elixxir/comms@master
master: update update_master build
release: update update_release build