Skip to content

Commit 9a36ec6

Browse files
committed
fixed mass conversion output showing dir name instead of program name
1 parent 65e8241 commit 9a36ec6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/commands/convert.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,10 @@ pub fn convert_command(
192192
}
193193

194194
prints!(
195-
"[color:bright-green]Successfully saved[color:reset] [color:bright-cyan]{}[color:reset] to [color:bright-cyan]{}.{}",
195+
"[color:bright-green]Successfully saved[color:reset] [color:bright-cyan]{}[color:reset] to [color:bright-cyan]{}/{}.{}",
196196
program.metadata.name,
197197
output_path_string.as_ref().unwrap(),
198+
program.metadata.name,
198199
output_path.extension().unwrap().to_str().unwrap()
199200
);
200201
}

0 commit comments

Comments
 (0)