mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
Fix recipe push stat
This commit is contained in:
parent
04769573ef
commit
d2bb65ed26
@ -654,7 +654,11 @@ fn handle_push(recipes: &Vec<CookRecipe>, config: &CliConfig) -> anyhow::Result<
|
||||
"",
|
||||
i == num_roots - 1,
|
||||
&match metadata {
|
||||
Ok(m) => WalkTreeEntry::Built(&archive_path, m.len()),
|
||||
Ok(m) => {
|
||||
total_size += m.len();
|
||||
visited.insert(root.name.clone());
|
||||
WalkTreeEntry::Built(&archive_path, m.len())
|
||||
}
|
||||
Err(_) => WalkTreeEntry::NotBuilt,
|
||||
},
|
||||
)?;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user