diff options
Diffstat (limited to 'src/bin/ngit/sub_commands/pull.rs')
| -rw-r--r-- | src/bin/ngit/sub_commands/pull.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/ngit/sub_commands/pull.rs b/src/bin/ngit/sub_commands/pull.rs index d79b7b1..77a65e9 100644 --- a/src/bin/ngit/sub_commands/pull.rs +++ b/src/bin/ngit/sub_commands/pull.rs | |||
| @@ -33,7 +33,7 @@ pub async fn launch() -> Result<()> { | |||
| 33 | let repo_coordinates = get_repo_coordinates(&git_repo, &client).await?; | 33 | let repo_coordinates = get_repo_coordinates(&git_repo, &client).await?; |
| 34 | fetching_with_report(git_repo_path, &client, &repo_coordinates).await?; | 34 | fetching_with_report(git_repo_path, &client, &repo_coordinates).await?; |
| 35 | 35 | ||
| 36 | let repo_ref = get_repo_ref_from_cache(git_repo_path, &repo_coordinates).await?; | 36 | let repo_ref = get_repo_ref_from_cache(Some(git_repo_path), &repo_coordinates).await?; |
| 37 | 37 | ||
| 38 | let logged_in_public_key = | 38 | let logged_in_public_key = |
| 39 | if let Ok(Some(npub)) = git_repo.get_git_config_item("nostr.npub", None) { | 39 | if let Ok(Some(npub)) = git_repo.get_git_config_item("nostr.npub", None) { |