upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/bin/ngit/sub_commands/init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/ngit/sub_commands/init.rs')
-rw-r--r--src/bin/ngit/sub_commands/init.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/ngit/sub_commands/init.rs b/src/bin/ngit/sub_commands/init.rs
index e28268d..39fe670 100644
--- a/src/bin/ngit/sub_commands/init.rs
+++ b/src/bin/ngit/sub_commands/init.rs
@@ -1055,7 +1055,7 @@ fn push_main_or_master_branch(git_repo: &Repo) -> Result<()> {
1055 if exit_status.success() { 1055 if exit_status.success() {
1056 Ok(()) 1056 Ok(())
1057 } else { 1057 } else {
1058 bail!("git push process exited with an error: {}", exit_status); 1058 bail!("git push process exited with an error: {exit_status}");
1059 } 1059 }
1060} 1060}
1061 1061
@@ -1086,6 +1086,6 @@ fn run_ngit_sync() -> Result<()> {
1086 if exit_status.success() { 1086 if exit_status.success() {
1087 Ok(()) 1087 Ok(())
1088 } else { 1088 } else {
1089 bail!("ngit sync process exited with an error: {}", exit_status); 1089 bail!("ngit sync process exited with an error: {exit_status}");
1090 } 1090 }
1091} 1091}