8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c0e078 commit 9830120Copy full SHA for 9830120
codecov/__init__.py
@@ -931,13 +931,11 @@ def main(*argv, **kwargs):
931
True,
932
dont_search_here,
933
):
934
- cmd = (
935
- sanitize_arg("", codecov.gcov_exec or "")
936
- + " -pb "
937
- + sanitize_arg("", codecov.gcov_args or "")
938
- + " "
939
- + path
940
- )
+ cmd = sanitize_arg("", codecov.gcov_exec or "").split(" ")
+ cmd.append("-pb")
+ if codecov.gcov_args:
+ cmd.append(sanitize_arg("", codecov.gcov_args or ""))
+ cmd.append(path)
941
write(" Executing gcov (%s)" % cmd)
942
write(try_to_run(cmd))
943
0 commit comments