diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-04-23 19:01:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 19:01:15 -0400 |
commit | f952d69eec957fcbefefd26220232fee6effe3e0 (patch) | |
tree | 48644720b48e37c093d2a93971fd51e6d68b9309 /cli/lib.rs | |
parent | da6d0c27605961ce797b6c9aca6807147c165a8b (diff) |
Parallelized deno fmt (#4823)
Diffstat (limited to 'cli/lib.rs')
-rw-r--r-- | cli/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |