diff --git a/Makefile b/Makefile index 4d89a10..cbe36e1 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,11 @@ test: - go test ./... + go test -cover ./... deploy-service: test go build -o gte-daemon ./cmd/daemon/service.go scp gte-daemon ewintr.nl:/home/erik/bin/gte-daemon ssh ewintr.nl /home/erik/bin/deploy-gte-daemon.sh + +install-cli: test + go build -o gte ./cmd/cli/main.go + mv gte ${HOME}/bin