From e875c1f64a7320417c12a70767366c5920b5c217 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto <mudler@users.noreply.github.com> Date: Fri, 2 Jun 2023 09:57:01 +0200 Subject: [PATCH] fix: fix the make run target (#476) Signed-off-by: mudler <mudler@mocaccino.org> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b4b53bfc..4dd3aed0 100644 --- a/Makefile +++ b/Makefile @@ -218,7 +218,7 @@ generic-build: ## Build the project using generic ## Run run: prepare ## run local-ai - CGO_LDFLAGS="$(CGO_LDFLAGS)" C_INCLUDE_PATH=${C_INCLUDE_PATH} LIBRARY_PATH=${LIBRARY_PATH} $(GOCMD) run ./main.go + CGO_LDFLAGS="$(CGO_LDFLAGS)" C_INCLUDE_PATH=${C_INCLUDE_PATH} LIBRARY_PATH=${LIBRARY_PATH} $(GOCMD) run ./ test-models/testmodel: mkdir test-models