diff options
Diffstat (limited to 'cli/tools/installer.rs')
-rw-r--r-- | cli/tools/installer.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs index 6928624ea..d1754562a 100644 --- a/cli/tools/installer.rs +++ b/cli/tools/installer.rs @@ -321,6 +321,10 @@ fn resolve_shim_data( executable_args.push("--no-remote".to_string()); } + if flags.no_npm { + executable_args.push("--no-npm".to_string()); + } + if flags.lock_write { executable_args.push("--lock-write".to_string()); } |