Skip to content

Commit 5bc434c

Browse files
committed
Fix: check outdated for builder
1 parent 9960b9d commit 5bc434c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

builder/src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,10 @@ fn run_update() -> Result<(), Box<dyn std::error::Error>> {
310310
// Simply display outdated dependencies, but don't considert them an error.
311311
run_script("npm", &["outdated"], "../client", false)?;
312312
run_script("npm", &["outdated"], "../extensions/VSCode", false)?;
313-
run_cmd!(cargo outdated;)?;
313+
run_cmd!(
314+
cargo outdated --manifest-path=../builder/Cargo.toml;
315+
cargo outdated;
316+
)?;
314317
Ok(())
315318
}
316319

0 commit comments

Comments
 (0)