From f8f97afc9f98e6828b8c2793392939e7cf9d68f0 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Fri, 26 Jul 2024 23:46:51 +0200 Subject: [PATCH] Fix `clean` Makefile target Fix `clean` Makefile target. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3c850a9..97872cd 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ all: clean test .PHONY: clean clean: @rm -rf dist unit.coverprofile - @go clean -i -cache $(shell go list ./...) + @go clean -i -cache .PHONY: test test: