Skip to content

Commit

Permalink
Fix go clean in Make target
Browse files Browse the repository at this point in the history
Fix `go clean` call that changed behavior at some point in time.
  • Loading branch information
HeavyWombat committed May 14, 2024
1 parent 0fbe515 commit 53f5098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ all: test
.PHONY: clean
clean:
@rm -rf dist
@go clean -cache $(shell go list ./...)
@go clean -i -cache

.PHONY: todo-list
todo-list:
Expand Down

0 comments on commit 53f5098

Please sign in to comment.