We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdae0cb commit b8bfa4bCopy full SHA for b8bfa4b
bench_runner/scripts/install.py
@@ -308,6 +308,15 @@ def generate_generic(dst: Any) -> Any:
308
def _main(check: bool) -> None:
309
WORKFLOW_PATH.mkdir(parents=True, exist_ok=True)
310
311
+ # Copy the bench_runner.toml file first, because it might be needed by the
312
+ # other steps
313
+
314
+ if not (ROOT_PATH / "bench_runner.toml").is_file():
315
+ shutil.copyfile(
316
+ TEMPLATE_PATH / "bench_runner.toml",
317
+ ROOT_PATH / "bench_runner.toml",
318
+ )
319
320
for src_path in TEMPLATE_PATH.glob("*"):
321
if not src_path.is_file():
322
continue
0 commit comments