diff options
author | Yazan AbdAl-Rahman <yazan.abdalrahman@exalt.ps> | 2024-08-20 04:20:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 01:20:06 +0000 |
commit | 4f49f703c10afcde7155baac2b494fa6670c0115 (patch) | |
tree | ad9231735e1fc57a71e77de97dc0ac20ea9705a6 /cli/mainrt.rs | |
parent | 0eba180fdbfdc19e15c743f00382d3fc79f65a10 (diff) |
fix(cli): update permission prompt message for compiled binaries (#24081)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/mainrt.rs')
-rw-r--r-- | cli/mainrt.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/mainrt.rs b/cli/mainrt.rs index fd03224be..02d58fcee 100644 --- a/cli/mainrt.rs +++ b/cli/mainrt.rs @@ -83,6 +83,7 @@ fn load_env_vars(env_vars: &IndexMap<String, String>) { } fn main() { + deno_runtime::deno_permissions::mark_standalone(); let args: Vec<_> = env::args_os().collect(); let standalone = standalone::extract_standalone(Cow::Owned(args)); let future = async move { |