diff --git a/Makefile b/Makefile index 815c492..4db02f2 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,12 @@ install: test: @go test ./... -cover -v +clean: + @rm -f /tmp/distribusi-go* && rm ./distribusi + release: @goreleaser release --snapshot --rm-dist && \ ssh varia.zone mkdir -p public_html/distribusi-go/$(VERSION) && \ scp -r dist/* varia.zone:public_html/distribusi-go/$(VERSION) -.PHONY: build install test release +.PHONY: build install test clean release