From 34b87db44c345245ea190a6cb2af6339fa99b0e7 Mon Sep 17 00:00:00 2001 From: Suraj B M Date: Thu, 2 Oct 2025 23:49:37 +0530 Subject: [PATCH] build: fix delete path in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e5adf8f..c7aa150 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: go build -ldflags="-s -w" -trimpath -o ./dist/envy . clean: - rm ~/bin/test/envy + rm ./dist/envy dev: go build -o ./dist/envy .