diff options
Diffstat (limited to 'crates/shirabe/src/util/gitlab.rs')
| -rw-r--r-- | crates/shirabe/src/util/gitlab.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/util/gitlab.rs b/crates/shirabe/src/util/gitlab.rs index 71ff7e3..a71c231 100644 --- a/crates/shirabe/src/util/gitlab.rs +++ b/crates/shirabe/src/util/gitlab.rs @@ -75,7 +75,7 @@ impl GitLab { "gitlab.accesstoken".to_string(), ], &mut output, - (), + None, ) == 0 { self.io.borrow_mut().set_authentication( @@ -96,7 +96,7 @@ impl GitLab { "gitlab.deploytoken.user".to_string(), ], &mut token_user, - (), + None, ) == 0 && self.process.borrow_mut().execute_args( &[ @@ -105,7 +105,7 @@ impl GitLab { "gitlab.deploytoken.token".to_string(), ], &mut token_password, - (), + None, ) == 0 { self.io.borrow_mut().set_authentication( |
