Skip to content

Commit dee94fd

Browse files
committed
fix paths ?
1 parent c9d44ba commit dee94fd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ci/tooling/build-smp-report.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,13 @@ def main() -> int:
5050
# created it.
5151
args.output_report.parent.mkdir(parents=True, exist_ok=True)
5252

53+
smp_binary: Path = args.smp_binary.resolve()
54+
print(smp_binary.stat())
55+
5356
try:
5457
subprocess.run(
5558
(
56-
args.smp_binary,
59+
smp_binary.as_posix(),
5760
"report",
5861
"render",
5962
"--report-json",

0 commit comments

Comments
 (0)