From 88523be2b9467e03c4d2c9481677e9a76d3b726f Mon Sep 17 00:00:00 2001 From: Damyan Yordanov Date: Tue, 24 Sep 2024 13:12:00 +0200 Subject: [PATCH] Fix `Makefile` Target folder is no longer `target`, but `bin` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dad6a39..5984a60 100644 --- a/Makefile +++ b/Makefile @@ -11,10 +11,10 @@ build: go build -o bin/fedhcp ./main.go clean: - rm -rf target + rm -rf bin run: all - sudo ./target/fedhcp + sudo ./bin/fedhcp .PHONY: docker-build docker-build: ## Build docker image with the manager.