diff options
Diffstat (limited to 'cli/main_runtime.rs')
-rw-r--r-- | cli/main_runtime.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main_runtime.rs b/cli/main_runtime.rs index db3f9fd02..23f1c23b6 100644 --- a/cli/main_runtime.rs +++ b/cli/main_runtime.rs @@ -5,6 +5,7 @@ mod colors; mod standalone; mod tokio_util; +mod unix_util; mod version; use deno_core::error::anyhow; @@ -14,6 +15,7 @@ use std::env; pub fn main() { #[cfg(windows)] colors::enable_ansi(); // For Windows 10 + unix_util::raise_fd_limit(); let args: Vec<String> = env::args().collect(); if let Err(err) = run(args) { |