From 01593fa253bf03672e3e3060c6665f06e9978d86 Mon Sep 17 00:00:00 2001 From: kingecg Date: Sat, 13 Sep 2025 21:29:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=9E=84=E5=BB=BA=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=EF=BC=9A=E4=BF=AE=E6=94=B9=E8=BE=93=E5=87=BA=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E5=B9=B6=E6=B7=BB=E5=8A=A0.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7773828 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +dist/ \ No newline at end of file diff --git a/Makefile b/Makefile index 02beba8..1549fc8 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Variables BINARY_NAME := packer -BUILD_DIR := ./bin +BUILD_DIR := ./dist SRC_DIR := ./cmd/packer # Build the packer tool @@ -18,4 +18,5 @@ clean: @rm -rf $(BUILD_DIR) @echo "Clean completed." +all: clean build .PHONY: build clean \ No newline at end of file