From 35bd8039cdd3bb74fb342534c5ba5c53c5064136 Mon Sep 17 00:00:00 2001 From: crowlkats Date: Tue, 10 Sep 2024 14:33:44 +0200 Subject: [PATCH] add link to env var docs --- cli/args/flags.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 8e62152da1616a..fbf58fff2f5060 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1122,6 +1122,8 @@ impl Flags { static ENV_VARIABLES_HELP: &str = cstr!( r#"Environment variables: +Docs: https://docs.deno.com/go/env-vars + DENO_AUTH_TOKENS A semi-colon separated list of bearer tokens and hostnames to use when fetching remote modules from private repositories (e.g. "abcde12345@deno.land;54321edcba@github.com") @@ -3152,7 +3154,7 @@ fn compile_args_without_check_args(app: Command) -> Command { fn permission_args(app: Command, requires: Option<&'static str>) -> Command { app .after_help(cstr!(r#"Permission options: -Docs: https://docs.deno.com/go/permissions +Docs: https://docs.deno.com/go/permissions -A, --allow-all Allow all permissions. --no-prompt Always throw if required permission wasn't passed.