Default to not precompiled

This commit is contained in:
Richard Feldman 2022-04-15 10:21:17 -04:00
parent 0b979ebe1e
commit f56972742f
No known key found for this signature in database
GPG Key ID: 7E4127D1E4241798

View File

@ -128,7 +128,7 @@ 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("true")
.default_value("false")
.required(false),
)
.arg(
@ -234,7 +234,7 @@ 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("true")
.default_value("false")
.required(false),
)
.arg(