From 92f5eb29175e1888f714378217b5bca5dd0da77c Mon Sep 17 00:00:00 2001 From: Wildan M Date: Tue, 9 Jun 2026 20:52:27 +0700 Subject: [PATCH] Do not push host packages --- src/bin/repo.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/repo.rs b/src/bin/repo.rs index 09f9b06f..9f1d6596 100644 --- a/src/bin/repo.rs +++ b/src/bin/repo.rs @@ -858,6 +858,9 @@ fn handle_push(recipes: &Vec, config: &CliConfig) -> Result<()> { _is_last: bool, entry: &WalkTreeEntry| -> Result { + if package_name.is_host() { + return Ok(true); // TODO: skip altogether from recipes list + } let r = match entry { WalkTreeEntry::Built(archive_path, _) => { let install_path = PUSH_SYSROOT_DIR.get().unwrap();