From 5b73d3083680c2c35a68bd55afb72dc77cfa49b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Fri, 23 Mar 2018 23:09:39 +0100 Subject: [PATCH] Change printf->echo to avoid escaped stuff in bootstrap script --- hack/bootstrap_tfw_dev.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hack/bootstrap_tfw_dev.sh b/hack/bootstrap_tfw_dev.sh index b38cd72..703a5cb 100755 --- a/hack/bootstrap_tfw_dev.sh +++ b/hack/bootstrap_tfw_dev.sh @@ -4,14 +4,14 @@ set -eo pipefail LOGFILE="/tmp/bootstrap_tfw.log" trap 'echo "Something went wrong. Read the log az $LOGFILE"' ERR -printf "Cloning TFW repositories... " +echo -n "Cloning TFW repositories... " printf "baseimage... " && git clone git@github.com:avatao-content/baseimage-tutorial-framework.git >> $LOGFILE 2>&1 printf "frontend... " && git clone git@github.com:avatao-content/frontend-tutorial-framework.git >> $LOGFILE 2>&1 printf "test... " && git clone git@github.com:avatao-content/test-tutorial-framework.git >> $LOGFILE 2>&1 -printf "Done!\n\n" - -printf "Building baseimage and installing frontend dependencies... " +echo "Done!" +echo +echo -n "Building baseimage and installing frontend dependencies... " cd baseimage-tutorial-framework docker build -t baseimage-tutorial-framework . >> $LOGFILE 2>&1 & @@ -19,5 +19,5 @@ cd ../frontend-tutorial-framework yarn install >> $LOGFILE 2>&1 wait -printf "Done!\n" +echo "Done!" rm $LOGFILE