Skip to content

Commit bef32ca

Browse files
clippy: Fix semicolon_if_nothing_returned lints. (#510)
1 parent 73f53ab commit bef32ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ fn main() -> anyhow::Result<()> {
7171
if let Some(glob) = glob {
7272
for k in output_pairs.keys() {
7373
if glob.is_match(k) {
74-
output_paths.push(k)
74+
output_paths.push(k);
7575
}
7676
}
7777
if output_paths.is_empty() {
7878
bail!("no matching output paths found for '{}'.", glob.glob());
7979
};
8080
} else {
8181
for k in output_pairs.keys() {
82-
output_paths.push(k)
82+
output_paths.push(k);
8383
}
8484
};
8585

0 commit comments

Comments
 (0)