improved error handling for arc patch
This commit is contained in:
parent
608062e08c
commit
d028ac35b1
1 changed files with 6 additions and 5 deletions
|
@ -59,10 +59,11 @@ def _apply_patch(diff_id: str, conduit_token: str, host: str):
|
||||||
cmd = 'arc patch --nobranch --no-ansi --diff "{}" --nocommit '\
|
cmd = 'arc patch --nobranch --no-ansi --diff "{}" --nocommit '\
|
||||||
'--conduit-token "{}" --conduit-uri "{}"'.format(
|
'--conduit-token "{}" --conduit-uri "{}"'.format(
|
||||||
diff_id, conduit_token, host )
|
diff_id, conduit_token, host )
|
||||||
try:
|
result = subprocess.run(cmd, capture_output=True, stderr=subprocess.STDOUT,
|
||||||
subprocess.check_call(cmd, stdout=sys.stdout, stderr=sys.stderr, shell=True)
|
shell=True, text=True)
|
||||||
except subprocess.CalledProcessError:
|
if result.returncode != 0:
|
||||||
print('arc patch failed!')
|
print('ERROR: arc patch failed with error code {} and message:'.format(result.returncode))
|
||||||
|
print(result.stdout + result.stderr)
|
||||||
raise
|
raise
|
||||||
print('Patching completed.')
|
print('Patching completed.')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue