fix the scripts

This commit is contained in:
andyque 2015-04-13 16:11:09 +08:00
parent 205c4efd9f
commit d45f66cdb9
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ if __name__ == '__main__':
sys_ret = 0
try:
jenkins_script_path = "tools" + os.sep + "jenkins-scripts" + os.sep + "do-pull-request-builder.py"
sys_ret = os.system(jenkins_script_path)
sys_ret = os.system("python " + jenkins_script_path)
except:
traceback.print_exc()
sys_ret = 1