From a0b1f56158b353f1231a0e983e351e7029f8b470 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Tue, 20 Nov 2018 01:54:15 -0700 Subject: [PATCH] don't need the quotes --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 6063b34..66d47ec 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -39,7 +39,7 @@ fn main() -> std::io::Result<()> { } else { path.set_extension(""); let name = path.file_name().unwrap().to_str().unwrap(); - println!("{:?}", name); + println!("{}", name); std::process::Command::new("arm-none-eabi-objcopy").args( &["-O", "binary", &format!("target/thumbv4-none-agb/release/examples/{}",name),