summaryrefslogtreecommitdiff
path: root/cli/module_loader.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-12-07 15:59:13 -0500
committerGitHub <noreply@github.com>2023-12-07 15:59:13 -0500
commit78566753c81a26dc1855d8187c8192ffb1ba64e2 (patch)
tree73500bbd29baf164312f5bce58d880300a67a52a /cli/module_loader.rs
parent3f96e5a29a88afafcef0f17458b2800b2db316ee (diff)
feat: add suggestions to module not found error messages for file urls (#21498)
Diffstat (limited to 'cli/module_loader.rs')
-rw-r--r--cli/module_loader.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/module_loader.rs b/cli/module_loader.rs
index 92116dc7b..afd2d1999 100644
--- a/cli/module_loader.rs
+++ b/cli/module_loader.rs
@@ -169,7 +169,7 @@ impl ModuleLoadPreparer {
)
.await?;
- graph_valid_with_cli_options(graph, &roots, &self.options)?;
+ graph_valid_with_cli_options(graph, &self.fs, &roots, &self.options)?;
// If there is a lockfile...
if let Some(lockfile) = &self.lockfile {