mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
fix: correct flag in tar & upload (#21327)
This commit is contained in:
parent
2941dd7da8
commit
85fd8a7f22
1 changed files with 2 additions and 1 deletions
|
@ -2329,7 +2329,8 @@ fn publish_subcommand() -> Command {
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new("token")
|
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")
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue