From 3aeea57c5076352e6eea25e8bab50d222e1c674d Mon Sep 17 00:00:00 2001 From: Thomas Juerges <203795-tjuerges@users.noreply.gitlab.com> Date: Tue, 25 May 2021 16:14:07 +0200 Subject: [PATCH] L2SS-225: Fix typo in the echo statement, also add a tab --- bootstrap/sbin/rebuild_system_from_scratch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/sbin/rebuild_system_from_scratch.sh b/bootstrap/sbin/rebuild_system_from_scratch.sh index 640a72e53..ceefc1af0 100755 --- a/bootstrap/sbin/rebuild_system_from_scratch.sh +++ b/bootstrap/sbin/rebuild_system_from_scratch.sh @@ -17,9 +17,9 @@ if [ ${ret} -ne 0 ]; then ret=${?} fi if [ ${ret} -eq 0 ]; then - echo -e"\tFound Docker Compose: ${DOCKER_COMPOSE}" + echo -e "\tFound Docker Compose: ${DOCKER_COMPOSE}" else - echo "This system appears to not have Docker compose installed. This means that the system cannot be rebuilt with this script." + echo -e "\tThis system appears to not have Docker compose installed. This means that the system cannot be rebuilt with this script." return 1 fi -- GitLab