From 13225f9075fea47e1fe9832e31091117ba962dac Mon Sep 17 00:00:00 2001 From: Suraj B M Date: Tue, 30 Sep 2025 19:41:00 +0530 Subject: [PATCH] build: add correct build paths to makefile and add gitignore file --- .gitignore | 1 + Makefile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53c37a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +dist \ No newline at end of file diff --git a/Makefile b/Makefile index 26fb490..e5adf8f 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ all: go mod tidy - go build -ldflags="-s -w" -trimpath -o ~/bin/test/envy . + go build -ldflags="-s -w" -trimpath -o ./dist/envy . clean: rm ~/bin/test/envy dev: - go build -o ~/bin/test/envy . + go build -o ./dist/envy .