From 2da3391b5705f9090d0480cb335c1cf0d1816c50 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 1 Dec 2010 14:34:34 -0500 Subject: metabuild: Fix successful exit path --- bin/metabuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bin/metabuild b/bin/metabuild index 2c52211..4a27cb7 100755 --- a/bin/metabuild +++ b/bin/metabuild @@ -200,10 +200,8 @@ def phase_build(): def phase_complete(): log("Complete!") - tail.finish(loop) + tail.finish(loop, lambda: sys.exit(0)) # Start off the process phase_bootstrap() loop.run() - -sys.exit(0 if build_condition == 0 else 1) -- cgit