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