We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54058a commit bb166d9Copy full SHA for bb166d9
src/compiler.rs
@@ -263,7 +263,7 @@ impl AmberCompiler {
263
}
264
if !paths.is_empty() {
265
let files = if paths.len() > 1 { "Files" } else { "File" };
266
- let message = once(format!("{files} generated at:")).chain(paths.into_iter()).join("\n");
+ let message = once(format!("{files} generated at:")).chain(paths).join("\n");
267
Message::new_info_msg(message).show();
268
269
0 commit comments