From 546747617336eef9f54a9da30001ade0cd4503b6 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 8 Apr 2015 16:36:39 +0800 Subject: [PATCH] Don't verbose output in ci --- script/cibuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/cibuild b/script/cibuild index 264e12309884..707735814874 100755 --- a/script/cibuild +++ b/script/cibuild @@ -43,10 +43,10 @@ def main(): if is_travis and sys.platform == 'linux2': with scoped_env('CXX', 'g++'): with scoped_env('CC', 'gcc'): - run_script('bootstrap.py', ['-v', '--dev']) + run_script('bootstrap.py', ['--dev']) run_script('update.py') else: - run_script('bootstrap.py', ['-v', '--dev']) + run_script('bootstrap.py', ['--dev']) run_script('cpplint.py') if sys.platform != 'win32':