chore: add make clean to remove bin and manpages (#1776)

This commit is contained in:
zacanger 2020-09-18 16:20:55 +00:00 committed by GitHub
parent 49e9edea4a
commit f6aa6b0980
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,10 @@ endif
bin/gh: $(BUILD_FILES)
@go build -trimpath -ldflags "$(GO_LDFLAGS)" -o "$@" ./cmd/gh
clean:
rm -rf ./bin ./share
.PHONY: clean
test:
go test ./...
.PHONY: test