From 2176881dbe4193a0b26a8c917c123593d46e1d14 Mon Sep 17 00:00:00 2001 From: andyque Date: Mon, 13 Apr 2015 11:27:54 +0800 Subject: [PATCH 1/2] print more infor about jsb --- tools/jenkins-scripts/pull-request-builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/jenkins-scripts/pull-request-builder.py b/tools/jenkins-scripts/pull-request-builder.py index 9297bbd1ca..b0ceca229d 100755 --- a/tools/jenkins-scripts/pull-request-builder.py +++ b/tools/jenkins-scripts/pull-request-builder.py @@ -145,6 +145,7 @@ def syntronize_remote_pr(): def gen_scripting_bindings(): global branch + print("generate js bindings for branch " + branch) # Generate binding glue codes if(branch == 'v3' or branch == 'v4-develop' or branch == 'v35-for-tizen'): ret = os.system("python tools/jenkins-scripts/slave-scripts/gen_jsb.py") From 6783754f3e3ce1e15c0b1499610f12bced0fe55b Mon Sep 17 00:00:00 2001 From: andyque Date: Mon, 13 Apr 2015 12:00:09 +0800 Subject: [PATCH 2/2] fix typo --- tools/jenkins-scripts/pull-request-builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/jenkins-scripts/pull-request-builder.py b/tools/jenkins-scripts/pull-request-builder.py index b0ceca229d..b031399061 100755 --- a/tools/jenkins-scripts/pull-request-builder.py +++ b/tools/jenkins-scripts/pull-request-builder.py @@ -145,7 +145,7 @@ def syntronize_remote_pr(): def gen_scripting_bindings(): global branch - print("generate js bindings for branch " + branch) + print("generate script bindings for branch " + branch) # Generate binding glue codes if(branch == 'v3' or branch == 'v4-develop' or branch == 'v35-for-tizen'): ret = os.system("python tools/jenkins-scripts/slave-scripts/gen_jsb.py")