mirror of
https://github.com/italicsjenga/gba.git
synced 2024-12-24 03:11:29 +11:00
don't need the quotes
This commit is contained in:
parent
457e0ab6ac
commit
a0b1f56158
|
@ -39,7 +39,7 @@ fn main() -> std::io::Result<()> {
|
||||||
} else {
|
} else {
|
||||||
path.set_extension("");
|
path.set_extension("");
|
||||||
let name = path.file_name().unwrap().to_str().unwrap();
|
let name = path.file_name().unwrap().to_str().unwrap();
|
||||||
println!("{:?}", name);
|
println!("{}", name);
|
||||||
std::process::Command::new("arm-none-eabi-objcopy").args(
|
std::process::Command::new("arm-none-eabi-objcopy").args(
|
||||||
&["-O", "binary",
|
&["-O", "binary",
|
||||||
&format!("target/thumbv4-none-agb/release/examples/{}",name),
|
&format!("target/thumbv4-none-agb/release/examples/{}",name),
|
||||||
|
|
Loading…
Reference in a new issue