diff options
author | Luca Casonato <hello@lcas.dev> | 2023-11-30 23:07:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 23:07:26 +0100 |
commit | 9444bab18647bc871b63716a3a70b2aebaaf3821 (patch) | |
tree | d75fec1e4d323c31a2b796ef1dca7e12ed46306c | |
parent | b69001bb496917fe8f1e13b6f1aca9b802849351 (diff) |
fix: correct the batch upload length (#21401)
-rw-r--r-- | cli/tools/registry/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/registry/mod.rs b/cli/tools/registry/mod.rs index 42bb06087..c6508fd49 100644 --- a/cli/tools/registry/mod.rs +++ b/cli/tools/registry/mod.rs @@ -355,7 +355,7 @@ async fn perform_publish( })?; let authorization: Rc<str> = format!("githuboidc {}", value).into(); - for _ in &packages { + for _ in permissions { authorizations.push(authorization.clone()); } } |