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 9960b9d commit 5bc434cCopy full SHA for 5bc434c
builder/src/main.rs
@@ -310,7 +310,10 @@ fn run_update() -> Result<(), Box<dyn std::error::Error>> {
310
// Simply display outdated dependencies, but don't considert them an error.
311
run_script("npm", &["outdated"], "../client", false)?;
312
run_script("npm", &["outdated"], "../extensions/VSCode", false)?;
313
- run_cmd!(cargo outdated;)?;
+ run_cmd!(
314
+ cargo outdated --manifest-path=../builder/Cargo.toml;
315
+ cargo outdated;
316
+ )?;
317
Ok(())
318
}
319
0 commit comments