diff options
author | Freddy Fallon <freddyfallon@gmail.com> | 2021-01-19 12:46:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 13:46:08 +0100 |
commit | 867ce78fb662f8ed5cf9f4fbfa5bbb93a8fae6b0 (patch) | |
tree | dbd2abcd059cd904841910d92605f4de0c333976 | |
parent | 3505823e20baf961865ddb1d2c74fd420b79f13e (diff) |
fix(installer): pass cached-only to executable_args (#9169)
-rw-r--r-- | cli/tools/installer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/installer.rs b/cli/tools/installer.rs index 909c06f0b..20b0b17ef 100644 --- a/cli/tools/installer.rs +++ b/cli/tools/installer.rs @@ -246,7 +246,7 @@ pub fn install( } if flags.cached_only { - executable_args.push("--cached_only".to_string()); + executable_args.push("--cached-only".to_string()); } if !flags.v8_flags.is_empty() { |