From f952d69eec957fcbefefd26220232fee6effe3e0 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 23 Apr 2020 19:01:15 -0400 Subject: Parallelized deno fmt (#4823) --- cli/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/lib.rs') diff --git a/cli/lib.rs b/cli/lib.rs index 178e36c99..2e52ace93 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -567,7 +567,7 @@ pub fn main() { cache_command(flags, files).boxed_local() } DenoSubcommand::Fmt { check, files } => { - async move { fmt::format(files, check) }.boxed_local() + fmt::format(files, check).boxed_local() } DenoSubcommand::Info { file } => info_command(flags, file).boxed_local(), DenoSubcommand::Install { -- cgit v1.2.3