From 110a1222dedadcd31f8e584cd14df30a1f740f54 Mon Sep 17 00:00:00 2001 From: hklarner Date: Thu, 28 Sep 2023 10:46:28 +0200 Subject: [PATCH] makefile: bugfix for syntax error (unterminated quoted string) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bd0c4e8fe2..9c44e86266 100644 --- a/Makefile +++ b/Makefile @@ -45,9 +45,9 @@ help: @echo " make postgres-stop -- stops the local postgres cluster" @echo " make postgres-create -- create the local postgres cluster (only works on ubuntu 20.04)" @echo " make local-a4 -- patch to use local a4 (needs to have path ../adhocracy4)" - @echo " make celery-worker-start -- starts the celery worker in the foreground - @echo " make celery-worker-status -- lists all registered tasks and active worker nodes - @echo " make celery-worker-dummy-task -- calls the dummy task and prints result from redis + @echo " make celery-worker-start -- starts the celery worker in the foreground" + @echo " make celery-worker-status -- lists all registered tasks and active worker nodes" + @echo " make celery-worker-dummy-task -- calls the dummy task and prints result from redis" @echo .PHONY: install