Convert remaining print calls to echo in bootstrap script

This commit is contained in:
Kristóf Tóth 2018-03-24 11:37:42 +01:00
parent 78f74949a0
commit 39c587fcac
1 changed files with 3 additions and 3 deletions

View File

@ -5,9 +5,9 @@ LOGFILE="/tmp/bootstrap_tfw.log"
trap 'echo "Something went wrong. Read the log az $LOGFILE"' ERR
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
echo -n "baseimage... " && git clone git@github.com:avatao-content/baseimage-tutorial-framework.git >> $LOGFILE 2>&1
echo -n "frontend... " && git clone git@github.com:avatao-content/frontend-tutorial-framework.git >> $LOGFILE 2>&1
echo -n "test... " && git clone git@github.com:avatao-content/test-tutorial-framework.git >> $LOGFILE 2>&1
echo "Done!"
echo