diff options
Diffstat (limited to 'cli/args/lockfile.rs')
-rw-r--r-- | cli/args/lockfile.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/args/lockfile.rs b/cli/args/lockfile.rs index 35552b5b4..59ec7f0ef 100644 --- a/cli/args/lockfile.rs +++ b/cli/args/lockfile.rs @@ -246,7 +246,7 @@ impl CliLockfile { // has an extra newline at the end let diff = diff.trim_end(); Err(deno_core::anyhow::anyhow!( - "The lockfile is out of date. Run `deno cache --frozen=false`, `deno install --frozen=false`, or rerun with `--frozen=false` to update it.\nchanges:\n{diff}" + "The lockfile is out of date. Run `deno install --frozen=false`, or rerun with `--frozen=false` to update it.\nchanges:\n{diff}" )) } else { Ok(()) |