diff options
-rwxr-xr-x | bitbake/bin/bitbake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 2fe9c7905..54228518d 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -206,8 +206,9 @@ Default BBFILES are the .bb files in the current directory.""") except Exception, e: print "FATAL: Unable to start to '%s' UI: %s" % (ui, e) raise + finally: + serverConnection.terminate() - serverConnection.terminate() return return_value if __name__ == "__main__": |