From a1f1b2f3a1dbe0283f8253474cdadd2b242c1231 Mon Sep 17 00:00:00 2001 From: shujunqiao Date: Wed, 14 May 2014 18:47:58 +0800 Subject: [PATCH] [ci skip],for stupid error in equal (backup_files = current_files = range(1)) --- tools/jenkins-scripts/pull-request-builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/jenkins-scripts/pull-request-builder.py b/tools/jenkins-scripts/pull-request-builder.py index 7a5efdd10b..2719d45f63 100755 --- a/tools/jenkins-scripts/pull-request-builder.py +++ b/tools/jenkins-scripts/pull-request-builder.py @@ -36,7 +36,8 @@ def check_current_3rd_libs(branch): config_file_paths = ['external/config.json','templates/lua-template-runtime/runtime/config.json'] if (branch == 'v2'): config_file_paths = ['external/config.json'] - backup_files = current_files = range(1) + backup_files = range(1) + current_files = range(1) for i, config_file_path in enumerate(config_file_paths): if not os.path.isfile(config_file_path): raise Exception("Could not find 'external/config.json'")