Skip to content

Commit

Permalink
fix: fixed clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
SalOne22 committed Mar 17, 2024
1 parent c35b6aa commit d98091a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/utils/paths/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub fn get_paths(
if let Some(s) = &suffix {
out_path.push(format!("{file_name}{s}"));
} else {
out_path.push(format!("{file_name}"));
out_path.push(file_name);
}

Some((path, out_path))
Expand Down

0 comments on commit d98091a

Please sign in to comment.