Commit 95ef857d5c6ed15c6c6ba5f8a5b26c0a38b417ab

Anthony Green 2021-03-25T10:43:05

Verbose brew update.

diff --git a/.travis/install.sh b/.travis/install.sh
index 2420245..7e87235 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -2,7 +2,8 @@
 set -x
 
 if [[ $TRAVIS_OS_NAME != 'linux' ]]; then
-    brew update > brew-update.log 2>&1
+    brew update --verbose
+    # brew update > brew-update.log 2>&1
     # fix an issue with libtool on travis by reinstalling it
     brew uninstall libtool;
     brew install libtool dejagnu;
@@ -26,7 +27,7 @@ else
 	    wget -qO - https://rl.gl/cli/rlgl-linux-s390x.tgz | \
 		tar --strip-components=2 -xvzf - ./rlgl/rlgl;
 	    ;;
-	*) 
+	*)
 	    wget -qO - https://rl.gl/cli/rlgl-linux-amd64.tgz | \
 		tar --strip-components=2 -xvzf - ./rlgl/rlgl;
 	    ;;
@@ -36,7 +37,7 @@ else
     sudo apt-get update
     case $HOST in
 	mips64el-linux-gnu | sparc64-linux-gnu)
-        ;;	  
+        ;;
 	alpha-linux-gnu | arm32v7-linux-gnu | m68k-linux-gnu | sh4-linux-gnu)
 	    sudo apt-get install qemu-user-static
 	    ;;