Skip to content

Commit

Permalink
Fix Makefile
Browse files Browse the repository at this point in the history
Target folder is no longer `target`, but `bin`
  • Loading branch information
damyan committed Sep 24, 2024
1 parent b79599f commit 88523be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 88523be

Please sign in to comment.