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 96dc595 commit 6459ce0Copy full SHA for 6459ce0
src/bin/cargo/commands/verify_project.rs
@@ -13,10 +13,14 @@ pub fn cli() -> App {
13
14
pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
15
if let Err(e) = args.workspace(config) {
16
- config.shell().print_json(&HashMap::from([("invalid", e.to_string())]))?;
+ config
17
+ .shell()
18
+ .print_json(&HashMap::from([("invalid", e.to_string())]))?;
19
process::exit(1)
20
}
21
- config.shell().print_json(&HashMap::from([("success", "true")]))?;
22
23
24
+ .print_json(&HashMap::from([("success", "true")]))?;
25
Ok(())
26
0 commit comments