This commit is contained in:
TheTechRobo 2022-02-17 11:41:29 -05:00
parent eca6ca36c3
commit dd6d2332e9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "intern"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -113,7 +113,7 @@ fn main() {
for (key, value) in &metadata {
options_metadata = format!("{} --metadata \"{}:{}\"", options_metadata, key, value);
}
println!("{} {} {} {} {}", tool, options_metadata, identifier, options_files, extra_options);
println!("{} {} {} {} {}", tool.trim(), identifier.trim(), options_files.trim(), options_metadata.trim(), extra_options.trim());
//println!("{}", identifier);
}