summaryrefslogtreecommitdiff
path: root/cli/args/flags.rs
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2023-11-24 14:05:47 +0100
committerGitHub <noreply@github.com>2023-11-24 14:05:47 +0100
commit85fd8a7f221e49b2d2bf6f7bbf1b29c0ec217924 (patch)
treeccaa17993ca060d94e38824138b96a42a231c5b8 /cli/args/flags.rs
parent2941dd7da8a310cb898b4180a4511cde60d5375d (diff)
fix: correct flag in tar & upload (#21327)
Diffstat (limited to 'cli/args/flags.rs')
-rw-r--r--cli/args/flags.rs3
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")
)
})
}