mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-14 16:27:17 +00:00
Change printf->echo to avoid escaped stuff in bootstrap script
This commit is contained in:
parent
f1ec2a329b
commit
5b73d30836
@ -4,14 +4,14 @@ set -eo pipefail
|
|||||||
LOGFILE="/tmp/bootstrap_tfw.log"
|
LOGFILE="/tmp/bootstrap_tfw.log"
|
||||||
trap 'echo "Something went wrong. Read the log az $LOGFILE"' ERR
|
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 "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 "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 "test... " && git clone git@github.com:avatao-content/test-tutorial-framework.git >> $LOGFILE 2>&1
|
||||||
printf "Done!\n\n"
|
echo "Done!"
|
||||||
|
echo
|
||||||
printf "Building baseimage and installing frontend dependencies... "
|
|
||||||
|
|
||||||
|
echo -n "Building baseimage and installing frontend dependencies... "
|
||||||
cd baseimage-tutorial-framework
|
cd baseimage-tutorial-framework
|
||||||
docker build -t baseimage-tutorial-framework . >> $LOGFILE 2>&1 &
|
docker build -t baseimage-tutorial-framework . >> $LOGFILE 2>&1 &
|
||||||
|
|
||||||
@ -19,5 +19,5 @@ cd ../frontend-tutorial-framework
|
|||||||
yarn install >> $LOGFILE 2>&1
|
yarn install >> $LOGFILE 2>&1
|
||||||
|
|
||||||
wait
|
wait
|
||||||
printf "Done!\n"
|
echo "Done!"
|
||||||
rm $LOGFILE
|
rm $LOGFILE
|
||||||
|
Loading…
Reference in New Issue
Block a user