mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 21:50:00 -05:00
fix --v8-options (#2093)
This commit is contained in:
parent
4ffe1612ff
commit
1034d9723d
1 changed files with 2 additions and 1 deletions
|
@ -230,7 +230,8 @@ pub fn set_flags(
|
|||
|
||||
if matches.is_present("v8-options") {
|
||||
// display v8 help and exit
|
||||
v8_set_flags(vec!["deno".to_string(), "--help".to_string()]);
|
||||
// TODO(bartlomieju): this relies on `v8_set_flags` to swap `--v8-options` to help
|
||||
v8_set_flags(vec!["deno".to_string(), "--v8-options".to_string()]);
|
||||
}
|
||||
|
||||
if matches.is_present("v8-flags") {
|
||||
|
|
Loading…
Add table
Reference in a new issue