mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +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, false) => default_rule,
|
||||
};
|
||||
if recipe.name.is_host() && rule == "binary" {
|
||||
// host recipe binaries is currently not supported
|
||||
continue;
|
||||
}
|
||||
|
||||
recipe.apply_filesystem_config(rule)?;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user