summaryrefslogtreecommitdiff
path: root/cli/tools/installer.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-08-28 04:23:51 +0100
committerGitHub <noreply@github.com>2024-08-28 13:23:51 +1000
commitefcabce1c117a2e0fed8604d887695a0a19a37ad (patch)
tree63606b73b8ded2bd4cb2955540f62a394a956b9c /cli/tools/installer.rs
parent511d13abaf5cc98cc01250f7adc5edf15dc29276 (diff)
feat: remove `--lock-write` flag (#25214)
This commit remove `--lock-write` that was deprecated in v1.45 release. Closes https://github.com/denoland/deno/issues/24167. --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'cli/tools/installer.rs')
-rw-r--r--cli/tools/installer.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs
index 1809e1f16..c3f415dc7 100644
--- a/cli/tools/installer.rs
+++ b/cli/tools/installer.rs
@@ -464,10 +464,6 @@ async fn resolve_shim_data(
executable_args.push("--no-npm".to_string());
}
- if flags.lock_write {
- executable_args.push("--lock-write".to_string());
- }
-
if flags.cached_only {
executable_args.push("--cached-only".to_string());
}