From f1df39c924d5cdc8cbbbfa79f7ea4552a6d6c88a Mon Sep 17 00:00:00 2001 From: lpf Date: Fri, 13 Feb 2026 17:31:10 +0800 Subject: [PATCH] fix --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 57a3cde..421503c 100644 --- a/Makefile +++ b/Makefile @@ -85,6 +85,7 @@ build-all: install: build @echo "Installing $(BINARY_NAME)..." @mkdir -p $(INSTALL_BIN_DIR) + @rm -f $(INSTALL_BIN_DIR)/$(BINARY_NAME) @cp $(BUILD_DIR)/$(BINARY_NAME) $(INSTALL_BIN_DIR)/$(BINARY_NAME) @chmod +x $(INSTALL_BIN_DIR)/$(BINARY_NAME) @echo "Installed binary to $(INSTALL_BIN_DIR)/$(BINARY_NAME)"