mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
Do not push host packages
This commit is contained in:
parent
ade1870e0b
commit
92f5eb2917
@ -858,6 +858,9 @@ fn handle_push(recipes: &Vec<CookRecipe>, config: &CliConfig) -> Result<()> {
|
||||
_is_last: bool,
|
||||
entry: &WalkTreeEntry|
|
||||
-> Result<bool> {
|
||||
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();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user