diff options
Diffstat (limited to 'cli/args')
-rw-r--r-- | cli/args/flags.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index a5aff3d09..9f7b9206f 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -545,6 +545,7 @@ static ENV_VARIABLES_HELP: &str = r#"ENVIRONMENT VARIABLES: (alternative to passing --no-prompt on invocation) DENO_NO_UPDATE_CHECK Set to disable checking if a newer Deno version is available + DENO_V8_FLAGS Set V8 command line options DENO_WEBGPU_TRACE Directory to use for wgpu traces DENO_JOBS Number of parallel workers used for the --parallel flag with the test subcommand. Defaults to number @@ -2115,7 +2116,8 @@ fn v8_flags_arg<'a>() -> Arg<'a> { .use_value_delimiter(true) .require_equals(true) .help("Set V8 command line options") - .long_help("To see a list of all available flags use --v8-flags=--help.") + .long_help("To see a list of all available flags use --v8-flags=--help.\ + Any flags set with this flag are appended after the DENO_V8_FLAGS environmental variable") } fn seed_arg<'a>() -> Arg<'a> { |