mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Re-raise keyboardinterrupt (#2603)
This commit is contained in:
parent
0d90ef94ae
commit
b5b3914bbf
1 changed files with 4 additions and 2 deletions
|
@ -192,8 +192,8 @@ def run_external_command(
|
|||
sys.argv = list(cmd)
|
||||
sys.exit = mock_exit
|
||||
return func() or 0
|
||||
except KeyboardInterrupt:
|
||||
return 1
|
||||
except KeyboardInterrupt: # pylint: disable=try-except-raise
|
||||
raise
|
||||
except SystemExit as err:
|
||||
return err.args[0]
|
||||
except Exception as err: # pylint: disable=broad-except
|
||||
|
@ -227,6 +227,8 @@ def run_external_process(*cmd, **kwargs):
|
|||
|
||||
try:
|
||||
return subprocess.call(cmd, stdout=sub_stdout, stderr=sub_stderr)
|
||||
except KeyboardInterrupt: # pylint: disable=try-except-raise
|
||||
raise
|
||||
except Exception as err: # pylint: disable=broad-except
|
||||
_LOGGER.error("Running command failed: %s", err)
|
||||
_LOGGER.error("Please try running %s locally.", full_cmd)
|
||||
|
|
Loading…
Reference in a new issue