Revert "Removed debugging code"

This reverts commit c15bf48f77.

I did not test this well enough, sorry! This introduced problems
such as interactive shell not working anymore (#40), cryptsetup partion
creating not working anymore etc.
This commit is contained in:
Oliver Smith 2017-06-02 21:35:40 +02:00
parent 7d6365b473
commit 1b6f1d86ef
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ def _execute(loop, args, cmd, log_message, log, return_stdout, check=True):
transport.close()
return_code = transport.get_returncode()
if return_code != 0:
if return_code != 0 and False:
if check:
raise RuntimeError("Command failed: \n" + protocol.error)
args.logfd.write('Program exited with: {}\n'.format(transport.get_returncode()))