From d97308b4f1350aec6a192eaf726ce4e2b8e8a89e Mon Sep 17 00:00:00 2001 From: TakshakRamteke Date: Sun, 19 Jul 2026 22:18:21 +0530 Subject: [PATCH] feat: added a git ignore and changed the build output path --- .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..a9a5aec --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +tmp diff --git a/makefile b/makefile index f0b5817..dd6088a 100644 --- a/makefile +++ b/makefile @@ -4,10 +4,10 @@ run: @go run cmd/godb/main.go build: - @go build -o ${BINARY_NAME} cmd/godb/main.go + @go build -o tmp/${BINARY_NAME} cmd/godb/main.go start: - @./${BINARY_NAME} + @./tmp/${BINARY_NAME} clean: @go clean