From f0e1c8908bbdcd22490582aeade197df65c49334 Mon Sep 17 00:00:00 2001 From: Rafael da Fonseca Date: Thu, 18 Jun 2015 22:26:19 +0200 Subject: [PATCH] Send output to oblivion because of this message in travis log view: This log is too long to be displayed. Please reduce the verbosity of your build or download the raw log. Signed-off-by: Daan Hoogland --- tools/travis/before_install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh index dd90ec6ad81..770be61a641 100755 --- a/tools/travis/before_install.sh +++ b/tools/travis/before_install.sh @@ -89,9 +89,10 @@ sudo pip install texttable > /dev/null RETRY_COUNT=3 #Resolve plugins first +echo -e "\nDownloading Plugin dependencies" for ((i=0;i<$RETRY_COUNT;i++)) do - mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins + mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins > /dev/null if [[ $? -eq 0 ]]; then break; fi @@ -100,10 +101,11 @@ done #Resolve remaining deps cd tools/travis ./downloadDeps.sh 2> /dev/null +echo -e "\nDownloading Project dependencies" for ((i=0;i<$RETRY_COUNT;i++)) do - mvn org.apache.maven.plugins:maven-dependency-plugin:resolve + mvn org.apache.maven.plugins:maven-dependency-plugin:resolve > /dev/null if [[ $? -eq 0 ]]; then break; fi