mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-25 06:14:18 +08:00
Fix grammar
This commit is contained in:
parent
d2bb65ed26
commit
5af936d35f
@ -668,9 +668,14 @@ fn handle_push(recipes: &Vec<CookRecipe>, config: &CliConfig) -> anyhow::Result<
|
||||
if config.cook.verbose {
|
||||
println!("");
|
||||
println!(
|
||||
"Pushed {} of {} packages",
|
||||
"Pushed {} of {} {}",
|
||||
format_size(total_size),
|
||||
visited.len()
|
||||
visited.len(),
|
||||
if visited.len() == 1 {
|
||||
"package"
|
||||
} else {
|
||||
"packages"
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@ -697,9 +702,14 @@ fn handle_tree(recipes: &Vec<CookRecipe>, _config: &CliConfig) -> anyhow::Result
|
||||
|
||||
println!("");
|
||||
println!(
|
||||
"Estimated image size: {} of {} packages",
|
||||
"Estimated image size: {} of {} {}",
|
||||
format_size(total_size),
|
||||
visited.len()
|
||||
visited.len(),
|
||||
if visited.len() == 1 {
|
||||
"package"
|
||||
} else {
|
||||
"packages"
|
||||
},
|
||||
);
|
||||
|
||||
Ok(())
|
||||
|
||||
Loading…
Reference in New Issue
Block a user