From 7e404a8e6d3c1eabcad5e3a8512b0740bd393f62 Mon Sep 17 00:00:00 2001 From: Suraj B M Date: Thu, 2 Oct 2025 23:59:31 +0530 Subject: [PATCH] build: modify clean command in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 05104ac..340b05e 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: go build -ldflags="-s -w" -trimpath -o ./dist/envy . clean: - rm ./dist/envy + rm -rf ./dist dev: go build -o ./dist/envy .