From b80060e5b947a4f8e813b27ff36e07ba79df4558 Mon Sep 17 00:00:00 2001 From: Alex Shearn Date: Fri, 26 Jul 2024 12:36:48 +0100 Subject: [PATCH] Add publisher to makefile --- .gitignore | 2 +- Makefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 061f1d9d..9d5f18f2 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,4 @@ debug.test # nexus pro license file scripts/license.lic -dist/ +dist/ \ No newline at end of file diff --git a/Makefile b/Makefile index 9198114c..4a06e3f1 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,7 @@ endif build: fmtcheck go build -v . + go build -v -o dist/tf-publisher ./publisher/cmd/publisher test: fmt go test $(TEST) || exit 1