Skip to content

Commit

Permalink
fix: updates Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mavogel committed Jan 7, 2021
1 parent 3c5cd46 commit c3093b8
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
.PHONY: bootstrap
bootstrap: clean deps

.PHONY: deps
deps:
dep ensure -v

.PHONY: clean
clean:
rm -rf ./vendor/
rm -rf ./dist/
rm -rf ./git-chglog
rm -rf $(GOPATH)/bin/git-chglog
Expand All @@ -19,11 +11,11 @@ build:

.PHONY: test
test:
go test -v `go list ./... | grep -v /vendor/`
go test -v `go list ./...`

.PHONY: coverage
coverage:
goverage -coverprofile=cover.out `go list ./... | grep -v /vendor/`
goverage -coverprofile=cover.out `go list ./...`
go tool cover -func=cover.out
@rm -rf cover.out

Expand Down

0 comments on commit c3093b8

Please sign in to comment.