From af18612a4c48527a48f70b4d69ec8256e94f4316 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 25 Jan 2016 12:37:57 +0300 Subject: [PATCH] Turn of '--verbose' option in Travis builds to place log size within limits --- tests/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.sh b/tests/common.sh index b4e935168..1d674081c 100755 --- a/tests/common.sh +++ b/tests/common.sh @@ -12,7 +12,7 @@ function build_sketches() continue fi echo -e "\n\n ------------ Building $sketch ------------ \n\n"; - $arduino --verify --verbose $sketch; + $arduino --verify $sketch; local result=$? if [ $result -ne 0 ]; then echo "Build failed ($1)"