[agent-automation] Fix build target to use root directory instead of non-existent cmd/

This commit is contained in:
Fordjent Agent 2026-05-21 15:01:18 +00:00
parent c524d8c139
commit a5ca86c023

View file

@ -4,7 +4,7 @@ APP_NAME := testbed2
BUILD_DIR := build
build:
go build -o $(BUILD_DIR)/$(APP_NAME) ./cmd/$(APP_NAME)
go build -o $(BUILD_DIR)/$(APP_NAME) .
run: build
./$(BUILD_DIR)/$(APP_NAME)