build(Makefile): fix oopsie

This commit is contained in:
Sarah Vaupel 2024-10-20 01:54:49 +02:00
parent 9e8057f6e7
commit a376ef9487

View File

@ -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 \