From 21739bdbc93f9b1af6fdb722484885e4cb2fc57a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 30 Sep 2010 09:37:42 -0700 Subject: [PATCH] autobuild: fixed exit status this should fix the case where we don't send logs on failure --- script/autobuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/autobuild.py b/script/autobuild.py index 2870068b209..1f1e6b47d59 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) -- 2.34.1