Skip to content

Commit

Permalink
tried
Browse files Browse the repository at this point in the history
  • Loading branch information
veritem committed May 16, 2024
1 parent 9f8b440 commit 95f0e1f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ fn main() {
.expect("failed to execute process");

if commit_output.status.success() {
println!("changes were committed!");
println!("changes were committed!\n");
println!("{}", String::from_utf8_lossy(&commit_output.stdout));
} else if !commit_output.status.success() {
println!("Failed to commit changes");
println!("{}", String::from_utf8_lossy(&commit_output.stdout));
Expand Down

0 comments on commit 95f0e1f

Please sign in to comment.