silence perl build output
Graham Knop [Thu, 29 Aug 2013 18:28:03 +0000 (14:28 -0400)]
maint/travis-perlbrew

index f3a4a6c..89ec726 100644 (file)
@@ -3,10 +3,12 @@ BREWOPTS=
 [[ "${TRAVIS_PERL_VERSION}_" =~ '_thr_' ]] && BREWOPTS="$BREWOPTS -Duseithreads"
 
 if ! perlbrew use | grep -q "Currently using $TRAVIS_PERL_VERSION"; then
-  perlbrew install --as $TRAVIS_PERL_VERSION --notest --noman --verbose $BREWOPTS -j 2 $BREWVER
+  echo "Building perl $TRAVIS_PERL_VERSION..."
+  PERLBUILD=$(perlbrew install --as $TRAVIS_PERL_VERSION --notest --noman --verbose $BREWOPTS -j 2 $BREWVER 2>&1)
   perlbrew use $TRAVIS_PERL_VERSION
   if ! perlbrew use | grep -q "Currently using $TRAVIS_PERL_VERSION"; then
     echo "Unable to switch to $TRAVIS_PERL_VERSION - compilation failed...?" 1>&2
+    echo "$PERLBUILD" 1>&2
     exit 1
   fi
 fi