[Jenkins][ci skip]: Fix return value of git fail

This commit is contained in:
lm 2014-04-08 16:35:01 +08:00
parent 87a3b7e6cb
commit ca9b4a3196
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ def main():
git_fetch_pr = "git fetch origin pull/" + str(pr_num) + "/merge" git_fetch_pr = "git fetch origin pull/" + str(pr_num) + "/merge"
ret = os.system(git_fetch_pr) ret = os.system(git_fetch_pr)
if(ret != 0): if(ret != 0):
return(1) return(2)
#checkout #checkout
git_checkout = "git checkout -b " + "pull" + str(pr_num) + " FETCH_HEAD" git_checkout = "git checkout -b " + "pull" + str(pr_num) + " FETCH_HEAD"
@ -99,7 +99,7 @@ def main():
git_update_submodule = "git submodule update --init --force" git_update_submodule = "git submodule update --init --force"
ret = os.system(git_update_submodule) ret = os.system(git_update_submodule)
if(ret != 0): if(ret != 0):
return(1) return(2)
# Generate binding glue codes # Generate binding glue codes
if(branch == 'develop'): if(branch == 'develop'):