init: do not log successful command completion

This commit is contained in:
Jeremy Soller
2025-11-01 19:29:52 -06:00
parent f59f893d5b
commit 9972903dc4
-2
View File
@@ -190,8 +190,6 @@ pub fn run(file: &Path) -> Result<()> {
Ok(exit_status) => {
if !exit_status.success() {
println!("{cmd} failed with {exit_status}");
} else {
println!("{cmd} done.");
}
}
Err(err) => {