From 24fbf6e2ef71e1596eff66be41a8f8960b5dee5f Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 18:15:45 -0500 Subject: [PATCH] Build before running cpplint Let's make sure things build before we check coding style. If it doesn't even build, who cares about the style? --- brightray/script/cibuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brightray/script/cibuild b/brightray/script/cibuild index ab6b8eaead..bfe1ec92b8 100755 --- a/brightray/script/cibuild +++ b/brightray/script/cibuild @@ -18,8 +18,8 @@ def main(): url = 'https://{0}.s3.amazonaws.com/libchromiumcontent'.format(os.environ['JANKY_ARTIFACTS_S3_BUCKET']) return (run_script('bootstrap', url) or - run_script('cpplint') or - run_script('build')) + run_script('build') or + run_script('cpplint')) def copy_to_environment(credentials_file):