Prevent duplicate traceback on CalledProcessError [ci skip]

This commit is contained in:
Ines Montani 2020-09-13 19:28:54 +02:00
parent 61a4ef0b46
commit 416deb412f
1 changed files with 4 additions and 0 deletions

View File

@ -679,6 +679,10 @@ def run_command(
raise FileNotFoundError(
Errors.E970.format(str_command=" ".join(command), tool=command[0])
) from None
except subprocess.CalledProcessError as e:
# We don't want a duplicate traceback here
print(e)
sys.exit(1)
if ret.returncode != 0:
sys.exit(ret.returncode)
return ret