From f2e73f6a02de3602bc7bad79ffae8a4a483d3349 Mon Sep 17 00:00:00 2001 From: itchyny Date: Sun, 1 Oct 2023 11:28:53 +0900 Subject: [PATCH] Fix rm flag of make clean --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1555e9a..48140e2 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ $(GOBIN)/staticcheck: .PHONY: clean clean: - rm -f $(BIN) goxz CREDITS + rm -rf $(BIN) goxz CREDITS go clean .PHONY: bump