From: Richard Purdie Date: Wed, 8 Jun 2011 12:12:49 +0000 (+0100) Subject: bitbake/bin/bitbake: Return an error if exceptions occur X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c286ed9c50bf2e23a597bf46d7ae644236b6adc;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake/bin/bitbake: Return an error if exceptions occur Signed-off-by: Richard Purdie --- diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index acd2f790dc5..520e54912a5 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -217,6 +217,8 @@ Default BBFILES are the .bb files in the current directory.""") finally: server_connection.terminate() + return 1 + if __name__ == "__main__": try: ret = main()