mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-10 05:28:43 +08:00
Prevent binary host recipes temporarily
This commit is contained in:
parent
45b72dbbb4
commit
e99d7a4ef0
@ -631,6 +631,11 @@ fn parse_args(args: Vec<String>) -> anyhow::Result<(CliConfig, CliCommand, Vec<C
|
|||||||
(false, true) => "binary",
|
(false, true) => "binary",
|
||||||
(false, false) => default_rule,
|
(false, false) => default_rule,
|
||||||
};
|
};
|
||||||
|
if recipe.name.is_host() && rule == "binary" {
|
||||||
|
// host recipe binaries is currently not supported
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
recipe.apply_filesystem_config(rule)?;
|
recipe.apply_filesystem_config(rule)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user