Skip to content

Commit

Permalink
fixed mass conversion output showing dir name instead of program name
Browse files Browse the repository at this point in the history
  • Loading branch information
cqb13 committed Jan 9, 2025
1 parent 65e8241 commit 9a36ec6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,10 @@ pub fn convert_command(
}

prints!(
"[color:bright-green]Successfully saved[color:reset] [color:bright-cyan]{}[color:reset] to [color:bright-cyan]{}.{}",
"[color:bright-green]Successfully saved[color:reset] [color:bright-cyan]{}[color:reset] to [color:bright-cyan]{}/{}.{}",
program.metadata.name,
output_path_string.as_ref().unwrap(),
program.metadata.name,
output_path.extension().unwrap().to_str().unwrap()
);
}
Expand Down

0 comments on commit 9a36ec6

Please sign in to comment.