diff options
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 797b5a8d60..9556fb0441 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -202,11 +202,7 @@ Default BBFILES are the .bb files in the current directory.""") | |||
202 | print("FATAL: Invalid user interface '%s' specified. " % ui) | 202 | print("FATAL: Invalid user interface '%s' specified. " % ui) |
203 | print("Valid interfaces are 'ncurses', 'depexp' or the default, 'knotty'.") | 203 | print("Valid interfaces are 'ncurses', 'depexp' or the default, 'knotty'.") |
204 | else: | 204 | else: |
205 | try: | 205 | return_value = server.BitbakeUILauch().launch(serverinfo, ui_init, serverConnection.connection, serverConnection.events) |
206 | return_value = server.BitbakeUILauch().launch(serverinfo, ui_init, serverConnection.connection, serverConnection.events) | ||
207 | except Exception as e: | ||
208 | print("FATAL: Unable to start to '%s' UI: %s" % (ui, e)) | ||
209 | raise | ||
210 | finally: | 206 | finally: |
211 | serverConnection.terminate() | 207 | serverConnection.terminate() |
212 | 208 | ||