From 4b807cf4126e164b1d5ba3be20bc353b27838c42 Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 28 May 2025 09:28:33 +0100 Subject: [PATCH] Fix Makefile "run" target The recent change introduced by the commit 023076dd824f28d781614333900f7aa273941768 broke the "run" target. Without this patch, starting the service via "pdm start" would fail with the following error: $ pdm start python src/lightspeed-stack.py "run" [09:26:45] INFO Lightspeed stack startup usage: lightspeed-stack.py [-h] [-v] [-d] lightspeed-stack.py: error: unrecognized arguments: run make: *** [Makefile:6: run] Error 2 Signed-off-by: Lucas Alvares Gomes --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ca860f1..48714f3f 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ PATH_TO_PLANTUML := ~/bin run: ## Run the service locally - python src/lightspeed-stack.py "$@" + python src/lightspeed-stack.py test-unit: ## Run the unit tests @echo "Running unit tests..."