diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-08 11:50:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-08 11:50:09 -0500 |
| commit | 91443bbc0b3e5420d8a0b3506f1b18a88d48560a (patch) | |
| tree | 804e60461874a71af08760f3aa1809c782558ac0 /cli/proc_state.rs | |
| parent | a6b5d05311f54d085a1e44f4a51717b4c0a4c74b (diff) | |
fix(compile): ensure import map is used when specified in deno config file (#16990)
Closes #14246
Diffstat (limited to 'cli/proc_state.rs')
| -rw-r--r-- | cli/proc_state.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/proc_state.rs b/cli/proc_state.rs index aae606c80..07f8a0860 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -160,9 +160,7 @@ impl ProcState { let progress_bar = ProgressBar::default(); let http_client = HttpClient::new( Some(root_cert_store.clone()), - cli_options - .unsafely_ignore_certificate_errors() - .map(ToOwned::to_owned), + cli_options.unsafely_ignore_certificate_errors().clone(), )?; let file_fetcher = FileFetcher::new( http_cache, |
