diff options
Diffstat (limited to 'cli/resolver.rs')
-rw-r--r-- | cli/resolver.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/cli/resolver.rs b/cli/resolver.rs index 57c05b532..e0a33bf3c 100644 --- a/cli/resolver.rs +++ b/cli/resolver.rs @@ -225,13 +225,8 @@ impl CliNodeResolver { let package_json_path = package_folder.join("package.json"); if !self.fs.exists_sync(&package_json_path) { return Err(anyhow!( - "Could not find '{}'. Deno expects the node_modules/ directory to be up to date. Did you forget to run `{}`?", + "Could not find '{}'. Deno expects the node_modules/ directory to be up to date. Did you forget to run `deno install`?", package_json_path.display(), - if *crate::args::DENO_FUTURE { - "deno install" - } else { - "npm install" - }, )); } } |