diff options
Diffstat (limited to 'src/sub_commands/push.rs')
| -rw-r--r-- | src/sub_commands/push.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/sub_commands/push.rs b/src/sub_commands/push.rs index fefe102..ade2ff8 100644 --- a/src/sub_commands/push.rs +++ b/src/sub_commands/push.rs | |||
| @@ -148,7 +148,14 @@ pub async fn launch(cli_args: &Cli, args: &SubCommandArgs) -> Result<()> { | |||
| 148 | ahead.len() | 148 | ahead.len() |
| 149 | ); | 149 | ); |
| 150 | 150 | ||
| 151 | let (keys, user_ref) = login::launch(&cli_args.nsec, &cli_args.password, Some(&client)).await?; | 151 | let (keys, user_ref) = login::launch( |
| 152 | &git_repo, | ||
| 153 | &cli_args.nsec, | ||
| 154 | &cli_args.password, | ||
| 155 | Some(&client), | ||
| 156 | false, | ||
| 157 | ) | ||
| 158 | .await?; | ||
| 152 | 159 | ||
| 153 | client.set_keys(&keys).await; | 160 | client.set_keys(&keys).await; |
| 154 | 161 | ||