1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-29 02:29:06 -05:00

fix(cli): remove extraneous comma in task --eval help (#26985)

This commit is contained in:
Caleb Cox 2024-11-21 14:24:54 -06:00 committed by GitHub
parent 8a5609ad73
commit a19b3f44d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3083,7 +3083,7 @@ Evaluate a task from string
Arg::new("eval")
.long("eval")
.help(
"Evaluate the passed value as if, it was a task in a configuration file",
"Evaluate the passed value as if it was a task in a configuration file",
).action(ArgAction::SetTrue)
)
.arg(node_modules_dir_arg())