diff options
author | Luca Casonato <hello@lcas.dev> | 2023-11-24 14:05:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-24 14:05:47 +0100 |
commit | 85fd8a7f221e49b2d2bf6f7bbf1b29c0ec217924 (patch) | |
tree | ccaa17993ca060d94e38824138b96a42a231c5b8 | |
parent | 2941dd7da8a310cb898b4180a4511cde60d5375d (diff) |
fix: correct flag in tar & upload (#21327)
-rw-r--r-- | cli/args/flags.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 4f5d82be8..53a034ef9 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2329,7 +2329,8 @@ fn publish_subcommand() -> Command { ) .arg( Arg::new("token") - .help("The API token to use when publishing. If unset, interactive authentication will be used.") + .long("token") + .help("The API token to use when publishing. If unset, interactive authentication is be used") ) }) } |