diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-09-01 12:37:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 12:37:14 -0400 |
commit | 3a601e56f4401fefb235b01e1405f697397b9790 (patch) | |
tree | 512a657a0d6be1eec43c004c184cf1875cbc5aa7 /cli/proc_state.rs | |
parent | 67713f4b9354799c4013dda9558470ce18989627 (diff) |
fix(npm): ignore npm cache directory creation errors (#15728)
Diffstat (limited to 'cli/proc_state.rs')
-rw-r--r-- | cli/proc_state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/proc_state.rs b/cli/proc_state.rs index 7175f18e1..42c34686f 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -229,7 +229,7 @@ impl ProcState { cli_options.unstable() // don't do the unstable error when in the lsp || matches!(cli_options.sub_command(), DenoSubcommand::Lsp), - )?; + ); Ok(ProcState(Arc::new(Inner { dir, |