From a5ca86c0231e742ea279f8c2e17f0ced1227f058 Mon Sep 17 00:00:00 2001 From: Fordjent Agent Date: Thu, 21 May 2026 15:01:18 +0000 Subject: [PATCH] [agent-automation] Fix build target to use root directory instead of non-existent cmd/ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f06a7a..6de38a8 100644 --- a/Makefile +++ b/Makefile @@ -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)