From 773e4158b6387d837ba4905d654d607f772a4951 Mon Sep 17 00:00:00 2001 From: Rafael da Fonseca Date: Fri, 19 Jun 2015 16:33:35 +0200 Subject: [PATCH] Print log data on after_failure.sh Signed-off-by: Daan Hoogland --- tools/travis/after_failure.sh | 2 +- tools/travis/before_install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/travis/after_failure.sh b/tools/travis/after_failure.sh index 1bc22aa720c..df40f733671 100755 --- a/tools/travis/after_failure.sh +++ b/tools/travis/after_failure.sh @@ -19,4 +19,4 @@ # As the filename suggests, this is executed on build failure # failure. # - +find /tmp//MarvinLogs -type f -exec echo -e "Printing logfile {} :\n" \; -exec cat {} \; diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh index 334f6fe505b..78faa3c6509 100755 --- a/tools/travis/before_install.sh +++ b/tools/travis/before_install.sh @@ -84,7 +84,7 @@ for ((i=0;i<$RETRY_COUNT;i++)) do sudo pip install lxml texttable > /tmp/piplog if [[ $? -eq 0 ]]; then - echo "\npython packages installed successfully" + echo -e "\npython packages installed successfully" break; fi echo -e "\npython packages failed to install"