stop capturing git's output

This commit is contained in:
kawaemon 2023-01-14 23:38:49 +09:00
parent badc18f098
commit 462d3ab3e3
No known key found for this signature in database
GPG Key ID: A2C1FF9E75556190

View File

@ -961,7 +961,7 @@ fn fetch_with_cli(
config
.shell()
.verbose(|s| s.status("Running", &cmd.to_string()))?;
cmd.exec_with_output()?;
cmd.exec()?;
Ok(())
}