[TOOLS] Disable command echo in Makefile

This commit is contained in:
Hugo Sales 2021-08-18 17:25:23 +01:00
parent 4b2a92d052
commit 365afb7ba8
Signed by untrusted user: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
DIR=$(strip $(notdir $(CURDIR))) # Seems a bit hack-ish, but `basename` works differently
.PHONY:
if ! docker info > /dev/null; then echo "Docker does not seem to be running"; exit 1; fi
@if ! docker info > /dev/null; then echo "Docker does not seem to be running"; exit 1; fi
up: .PHONY
docker-compose up -d