We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95d0c54 commit 38f2303Copy full SHA for 38f2303
1 file changed
codecov/__init__.py
@@ -181,7 +181,7 @@ def check_output(cmd, **popen_args):
181
def try_to_run(cmd, shell=False, cwd=None):
182
try:
183
return check_output(cmd, shell=shell, cwd=cwd)
184
- except (subprocess.CalledProcessError, FileNotFoundError) as e:
+ except Exception as e:
185
write(' Error running `%s`: %s' % (cmd, e.output or str(e)))
186
return None
187
0 commit comments