From e2c715b4d43316f1533f1c386a2321fffbf6b6cd Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Tue, 6 Feb 2024 03:06:27 +0100 Subject: [PATCH] Cleanup --- Makefile | 4 ---- config/frameworks/10-symfony.sh | 6 ++---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 174aa9f..833bff5 100644 --- a/Makefile +++ b/Makefile @@ -35,10 +35,6 @@ docker-push: .PHONY: docker-test ### Test docker image docker-test: - #docker create --name php83-aio ${DOCKER_IMAGE} - #docker start -i php83-aio || true - #docker stop php83-aio - #docker rm php83-aio docker run --rm -it ${DOCKER_IMAGE} .PHONY: docker-shell diff --git a/config/frameworks/10-symfony.sh b/config/frameworks/10-symfony.sh index 0f876aa..457ba11 100644 --- a/config/frameworks/10-symfony.sh +++ b/config/frameworks/10-symfony.sh @@ -44,10 +44,8 @@ case "$VARIANT" in esac echo " -> Testing environment..." -if bin/console about -q; then - echo " Successful" -else - echo " !! Failed" +if ! bin/console about -q; then + echo " >> Failed" fi exit 0