diff options
Diffstat (limited to 'src/bin/ngit/sub_commands')
| -rw-r--r-- | src/bin/ngit/sub_commands/init.rs | 2 | ||||
| -rw-r--r-- | src/bin/ngit/sub_commands/repo/accept.rs | 2 | ||||
| -rw-r--r-- | src/bin/ngit/sub_commands/send.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/ngit/sub_commands/init.rs b/src/bin/ngit/sub_commands/init.rs index 5ff57d5..021a33e 100644 --- a/src/bin/ngit/sub_commands/init.rs +++ b/src/bin/ngit/sub_commands/init.rs | |||
| @@ -1266,7 +1266,7 @@ async fn publish_and_finalize( | |||
| 1266 | // Step 5: Publish events | 1266 | // Step 5: Publish events |
| 1267 | client.set_signer(signer).await; | 1267 | client.set_signer(signer).await; |
| 1268 | 1268 | ||
| 1269 | send_events( | 1269 | let _ = send_events( |
| 1270 | client, | 1270 | client, |
| 1271 | Some(git_repo_path), | 1271 | Some(git_repo_path), |
| 1272 | events, | 1272 | events, |
diff --git a/src/bin/ngit/sub_commands/repo/accept.rs b/src/bin/ngit/sub_commands/repo/accept.rs index 5564b77..eaea107 100644 --- a/src/bin/ngit/sub_commands/repo/accept.rs +++ b/src/bin/ngit/sub_commands/repo/accept.rs | |||
| @@ -212,7 +212,7 @@ async fn accept_with_grasp_servers( | |||
| 212 | 212 | ||
| 213 | client.set_signer(signer.clone()).await; | 213 | client.set_signer(signer.clone()).await; |
| 214 | 214 | ||
| 215 | send_events( | 215 | let _ = send_events( |
| 216 | client, | 216 | client, |
| 217 | Some(git_repo.get_path()?), | 217 | Some(git_repo.get_path()?), |
| 218 | vec![repo_event], | 218 | vec![repo_event], |
diff --git a/src/bin/ngit/sub_commands/send.rs b/src/bin/ngit/sub_commands/send.rs index 6b18e84..86af2d3 100644 --- a/src/bin/ngit/sub_commands/send.rs +++ b/src/bin/ngit/sub_commands/send.rs | |||
| @@ -409,7 +409,7 @@ pub async fn launch(cli_args: &Cli, args: &SubCommandArgs, no_fetch: bool) -> Re | |||
| 409 | events | 409 | events |
| 410 | }; | 410 | }; |
| 411 | 411 | ||
| 412 | send_events( | 412 | let _ = send_events( |
| 413 | &client, | 413 | &client, |
| 414 | Some(git_repo_path), | 414 | Some(git_repo_path), |
| 415 | events.clone(), | 415 | events.clone(), |