diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-23 13:55:00 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-23 14:13:28 +0100 |
| commit | 0acc9768c2aff4bf4495c89698f29b56dae2f4b4 (patch) | |
| tree | ca338db831ed855c145cc37add22ec53cf4ac894 /src/bin/git_remote_nostr/push.rs | |
| parent | f032a2812bcb6bd471a27f562e1e3020277c542b (diff) | |
fix(remote): enable login through remote helper
originally this was disabled because there was a concern that it
would effect the operation of the remote helper due as it prints
to stdout.
it now only writes to stderr.
Diffstat (limited to 'src/bin/git_remote_nostr/push.rs')
| -rw-r--r-- | src/bin/git_remote_nostr/push.rs | 2 |
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 5bc1cc8..3bda6ba 100644 --- a/src/bin/git_remote_nostr/push.rs +++ b/src/bin/git_remote_nostr/push.rs | |||
| @@ -131,7 +131,7 @@ pub async fn run_push( | |||
| 131 | &None, | 131 | &None, |
| 132 | Some(client), | 132 | Some(client), |
| 133 | false, | 133 | false, |
| 134 | true, | 134 | false, |
| 135 | ) | 135 | ) |
| 136 | .await?; | 136 | .await?; |
| 137 | 137 | ||