Skip to content

Commit

Permalink
Print newline after progress bar finishes
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo committed Dec 27, 2024
1 parent 8bdd7be commit 6a26a3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ async fn aur_pkgbuilds(config: &Config, bases: &Bases) -> Result<()> {
})?;

pb.finish();
println!();
}

Ok(())
Expand Down
1 change: 1 addition & 0 deletions src/pkgbuild.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ impl PkgbuildRepos {
})?;

pb.finish();
println!();
}

let review_repos = repos
Expand Down

0 comments on commit 6a26a3b

Please sign in to comment.