Skip to content

Commit beaf224

Browse files
committed
update
1 parent dd4de4c commit beaf224

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/verify-build.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,10 @@ def do_semver_checks(cfg: Cfg, target: Target) -> None:
290290

291291
# Build the current crate and the baseline crate, which CI should have downloaded
292292
run([*cmd, *rustdoc_args], env=env)
293-
run([*cmd, "--manifest-path", cfg.baseline_crate_dir, *rustdoc_args], env=env)
293+
run(
294+
[*cmd, "--manifest-path", cfg.baseline_crate_dir / "Cargo.toml", *rustdoc_args],
295+
env=env,
296+
)
294297

295298
baseline = cfg.baseline_crate_dir / "target" / tname / "libc.json"
296299
current = Path("target") / tname / "libc.json"

0 commit comments

Comments
 (0)