mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 00:01:16 +00:00
Don't specify a default value for --precompiled-host
If we do, it's treated as always present even if it's not passed in, which overrides the default of "infer based on target."
This commit is contained in:
parent
5fb4160f86
commit
9a89287365
1 changed files with 0 additions and 2 deletions
|
@ -128,7 +128,6 @@ pub fn build_app<'a>() -> App<'a> {
|
|||
.long(FLAG_PRECOMPILED)
|
||||
.about("Assumes the host has been precompiled and skips recompiling the host. (Enabled by default when using a --target other than `--target host`)")
|
||||
.possible_values(["true", "false"])
|
||||
.default_value("false")
|
||||
.required(false),
|
||||
)
|
||||
.arg(
|
||||
|
@ -234,7 +233,6 @@ pub fn build_app<'a>() -> App<'a> {
|
|||
.long(FLAG_PRECOMPILED)
|
||||
.about("Assumes the host has been precompiled and skips recompiling the host. (Enabled by default when using a --target other than `--target host`)")
|
||||
.possible_values(["true", "false"])
|
||||
.default_value("false")
|
||||
.required(false),
|
||||
)
|
||||
.arg(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue