From 368d660fe4912c0bb1c9b9b805cbf223495157c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Sat, 24 Mar 2018 11:48:54 +0100 Subject: [PATCH] Empty logfile on bootstrap script start --- hack/bootstrap_tfw_dev.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/bootstrap_tfw_dev.sh b/hack/bootstrap_tfw_dev.sh index f3867df..ea84008 100755 --- a/hack/bootstrap_tfw_dev.sh +++ b/hack/bootstrap_tfw_dev.sh @@ -8,6 +8,7 @@ FRONTEND=frontend-${TFW_POSTFIX} LOGFILE=/tmp/bootstrap_tfw.log trap 'echo "Something went wrong. Read the log az $LOGFILE"' ERR +: > $LOGFILE echo -n "Cloning TFW repositories... " echo -n "baseimage... " && git clone git@github.com:avatao-content/${BASEIMAGE}.git >> $LOGFILE 2>&1 echo -n "frontend... " && git clone git@github.com:avatao-content/${FRONTEND}.git >> $LOGFILE 2>&1