Skip to content

Commit 6459ce0

Browse files
committed
fmt
1 parent 96dc595 commit 6459ce0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/bin/cargo/commands/verify_project.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ pub fn cli() -> App {
1313

1414
pub fn exec(config: &mut Config, args: &ArgMatches) -> CliResult {
1515
if let Err(e) = args.workspace(config) {
16-
config.shell().print_json(&HashMap::from([("invalid", e.to_string())]))?;
16+
config
17+
.shell()
18+
.print_json(&HashMap::from([("invalid", e.to_string())]))?;
1719
process::exit(1)
1820
}
1921

20-
config.shell().print_json(&HashMap::from([("success", "true")]))?;
22+
config
23+
.shell()
24+
.print_json(&HashMap::from([("success", "true")]))?;
2125
Ok(())
2226
}

0 commit comments

Comments
 (0)