diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-30 09:37:42 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-30 16:45:13 +0000 |
commit | 21739bdbc93f9b1af6fdb722484885e4cb2fc57a (patch) | |
tree | d129b84a9750142012afe018bb6aa4ad55fae2de /script | |
parent | 46ec7d78514214aadbd664ba3e2707fa10540a0e (diff) | |
download | samba-21739bdbc93f9b1af6fdb722484885e4cb2fc57a.tar.gz samba-21739bdbc93f9b1af6fdb722484885e4cb2fc57a.tar.bz2 samba-21739bdbc93f9b1af6fdb722484885e4cb2fc57a.zip |
autobuild: fixed exit status
this should fix the case where we don't send logs on failure
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 2870068b20..1f1e6b47d5 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -371,4 +371,4 @@ blist.remove_logs() cleanup() print(errstr) print("Logs in logs.tar.gz") -sys.exit(os.WEXITSTATUS(status)) +sys.exit(status) |