From 5585780952f70897bc6020eb9ca45d3db94f7df8 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 3 Oct 2023 10:30:32 +0300 Subject: [PATCH] fix run.sh formatting --- .sample/run.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.sample/run.sh b/.sample/run.sh index 2f8fae1..06ada9b 100755 --- a/.sample/run.sh +++ b/.sample/run.sh @@ -1,18 +1,18 @@ #!/usr/bin/env sh BOLD='\033[0;1m' -printf "$${BOLD}Installing MODULE_NAME..." +printf "$${BOLD}Installing MODULE_NAME ...\n\n" # Add code here # Use varibles from the templatefile function in main.tf # e.g. LOG_PATH, PORT, etc. -echo "🥳 Installation comlete!" +printf "🥳 Installation comlete!\n\n" -echo "👷 Starting MODULE_NAME in background..." +printf "👷 Starting MODULE_NAME in background...\n\n" # Start the app in here # 1. Use & to run it in background # 2. redirct stdout and stderr to log files ./app >${LOG_PATH} 2>&1 & -echo "check logs at ${LOG_PATH}" +printf "check logs at ${LOG_PATH} \n\n"