From c781435fbbaa67099b1d59bb5f68ef1d20a297dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Criado-P=C3=A9rez?= Date: Mon, 26 Jun 2023 12:46:22 +0200 Subject: [PATCH] fixes #89 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f906edf7..8e8142c9 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,7 @@ build: $(BUILD_DIR) ## Build go binary. .PHONY: install install: build ## Install the go binary. $(RM) $(INSTALL_DIR)/$(BIN_NAME) + mkdir -p $(INSTALL_DIR) cp $(BUILD_DIR)/$(BIN_NAME) $(INSTALL_DIR)/ .PHONY: cross