removed the absolute path to some random binary used for testing
HEAD main1 files changed, 1 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs
index 34f73e1..aebcc18 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -157,7 +157,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("{:?}", opt.bots);
println!("{:?}", opt.game_round_duration_seconds);
- let path = Some("/Users/emilehansmaennel/Documents/CTF/2023/indore/Lengan/main_fixed".to_owned());
+ let path = Some("--".to_owned());
let mut r2p = r2pipe::open_pipe!(path).expect("could not open r2pipe");
init_arena(&mut r2p, &opt);
@@ -168,11 +168,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("{:?}", bot);
}
- // println!("{}", r2p.cmd("?e Hello World").expect("could not exec command"));
- // println!("{}", r2p.cmd("aaa").expect("could not exec command"));
- // println!("---");
- // println!("{}", r2p.cmd("afl").expect("could not exec command"));
- // println!("---");
r2p.close();
Ok(())
|