diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-06-18 09:21:31 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:37 +0100 |
commit | 526837e1c16e7d5ced40bea6463e58641c94ba05 (patch) | |
tree | f9249f119f53e3ef91f15b2829cdfcf6d1601edf /bitbake | |
parent | 2f0a485bd4857d6f26eccc94480a6db8bfa987a9 (diff) | |
download | openembedded-core-526837e1c16e7d5ced40bea6463e58641c94ba05.tar.gz openembedded-core-526837e1c16e7d5ced40bea6463e58641c94ba05.tar.bz2 openembedded-core-526837e1c16e7d5ced40bea6463e58641c94ba05.zip |
Move serverConnection.terminate() back into the finally
(Bitbake rev: 58e1b0a5dbd0f1ca137ad7ed1bd7ad9975a20fb7)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-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 2fe9c79054..54228518d7 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__": |