1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

fix: correct flag in tar & upload (#21327)

This commit is contained in:
Luca Casonato 2023-11-24 14:05:47 +01:00 committed by GitHub
parent 2941dd7da8
commit 85fd8a7f22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")
)
})
}