mirror of
https://github.com/ARM-software/devlib.git
synced 2025-04-05 09:20:03 +01:00
ssh: Improve error when failing to push file
CalledProcessError doesn't include the output of the failed command in the message it prints, so use a HostError isntead.
This commit is contained in:
parent
93b39a7f47
commit
380ad0515d
@ -292,7 +292,8 @@ class SshConnection(object):
|
|||||||
try:
|
try:
|
||||||
check_output(command, timeout=timeout, shell=True)
|
check_output(command, timeout=timeout, shell=True)
|
||||||
except subprocess.CalledProcessError as e:
|
except subprocess.CalledProcessError as e:
|
||||||
raise subprocess.CalledProcessError(e.returncode, command_redacted e.output)
|
raise HostError("Failed to copy file with '{}'. Output:\n{}".format(
|
||||||
|
command_redacted, e.output))
|
||||||
except TimeoutError as e:
|
except TimeoutError as e:
|
||||||
raise TimeoutError(command_redacted, e.output)
|
raise TimeoutError(command_redacted, e.output)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user