From e99d7a4ef0179d5dfcdcdcb5b1ba41834a9933f5 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Fri, 13 Feb 2026 17:03:55 +0700 Subject: [PATCH] Prevent binary host recipes temporarily --- src/bin/repo.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/repo.rs b/src/bin/repo.rs index ec6ccd3c..6c97fe6a 100644 --- a/src/bin/repo.rs +++ b/src/bin/repo.rs @@ -631,6 +631,11 @@ fn parse_args(args: Vec) -> anyhow::Result<(CliConfig, CliCommand, Vec "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)?; }