From a376ef9487e823ffd3422fdb642c691546be795e Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 20 Oct 2024 01:54:49 +0200 Subject: [PATCH] build(Makefile): fix oopsie --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index df26c26a9..2610afac7 100644 --- a/Makefile +++ b/Makefile @@ -333,7 +333,7 @@ start-%: --develop echo "DEV $(DEVELOP)" if [[ "$(SINGLETON)" = "true" ]]; then \ CONTAINER_FILE=$(DEVELOP)/$* ; \ - if ! [[ -e $${CONTAINER_FILE} ]]; then \ + if [[ -e $${CONTAINER_FILE} ]]; then \ >&2 echo "Another $* service is already running! Use \"make new-develop\" or \"make start\" to start a new develop instance despite currently running services." ; \ exit 1 ; \ fi \