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();