upleb.uk

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

summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-09-17 13:36:45 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-09-17 13:36:45 +0100
commit2163e0a01f934692c8967a11eb9828fd70f7d03d (patch)
tree64f2d3eae009e43a7d9395bd6d1f34011db9ade5 /src/bin
parent31f8cb32c6b6cec266f6f97ceefe666addc5069d (diff)
fix(remote): push reporting copy
ensure commit id from and two are the correct way around
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/git_remote_nostr/push.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/git_remote_nostr/push.rs b/src/bin/git_remote_nostr/push.rs
index 9dbec0d..b038d19 100644
--- a/src/bin/git_remote_nostr/push.rs
+++ b/src/bin/git_remote_nostr/push.rs
@@ -436,8 +436,8 @@ fn push_to_remote_url(
436 for update in updates { 436 for update in updates {
437 let msg = format!( 437 let msg = format!(
438 "push: {}..{} {} -> {}", 438 "push: {}..{} {} -> {}",
439 oid_to_shorthand_string(update.dst()).unwrap(),
440 oid_to_shorthand_string(update.src()).unwrap(), 439 oid_to_shorthand_string(update.src()).unwrap(),
440 oid_to_shorthand_string(update.dst()).unwrap(),
441 update 441 update
442 .src_refname() 442 .src_refname()
443 .unwrap_or("") 443 .unwrap_or("")