We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3d3ab commit d14fee7Copy full SHA for d14fee7
codecov/__init__.py
@@ -534,9 +534,10 @@ def main(*argv, **kwargs):
534
535
# Build TOC
536
# ---------
537
- toc = str((try_to_run('cd %s && git ls-files' % root) or try_to_run('git ls-files')
538
- or try_to_run('cd %s && hg locate' % root) or try_to_run('hg locate')
539
- or '').strip())
+ toc = str((try_to_run('cd %s && git ls-files' % root)
+ try_to_run('git ls-files') or
+ try_to_run('cd %s && hg locate' % root) or
540
+ try_to_run('hg locate') or '').strip())
541
542
# Detect codecov.yml location
543
for _filename in toc.splitlines():
0 commit comments