From 6c17f247dfdf31bdbd3251d9d14384d3b9d6f8e6 Mon Sep 17 00:00:00 2001 From: Peace-Maker Date: Sat, 20 Dec 2014 11:32:15 +0100 Subject: [PATCH] Don't unpack mysql verbosely I doubt we're interested in the filename of every single file contained in the mysql archive when it's decompressed. It bloats up the travis build log. --- tools/checkout-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/checkout-deps.sh b/tools/checkout-deps.sh index 998144fe..40461e0c 100755 --- a/tools/checkout-deps.sh +++ b/tools/checkout-deps.sh @@ -7,7 +7,7 @@ ismac=0 iswin=0 archive_ext=tar.gz -decomp="tar zxvf" +decomp="tar zxf" if [ `uname` = "Darwin" ]; then ismac=1