Skip to content

Commit

Permalink
moss/cli/info: Move homepage up in info
Browse files Browse the repository at this point in the history
Signed-off-by: Ikey Doherty <ikey@serpentos.com>
  • Loading branch information
ikeycode committed Sep 20, 2023
1 parent bbce70f commit 040f494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moss/src/cli/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ fn print_package(pkg: &Package) {
println!("{}", pkg.meta.name);
print_titled("Version");
println!("{}", pkg.meta.version_identifier);
print_titled("Homepage");
println!("{}", pkg.meta.homepage);
print_titled("Summary");
println!("{}", pkg.meta.summary);
print_titled("Description");
print_paragraph(&pkg.meta.description);
print_titled("Homepage");
println!("{}", pkg.meta.homepage);
if !pkg.meta.dependencies.is_empty() {
print_titled("Dependencies");
let deps = pkg
Expand Down

0 comments on commit 040f494

Please sign in to comment.