This commit is contained in:
mii
2024-11-04 12:33:56 +09:00
parent 5534c350ac
commit 68d18a5401

View File

@ -9,8 +9,7 @@ fn main() -> Result<(), std::io::Error> {
let host_root = &args[1].trim_end_matches("/"); let host_root = &args[1].trim_end_matches("/");
println!("Breakout prelude"); println!("Breakout prelude");
prelude(host_root)?; prelude(host_root)?;
println!("procfs breakout"); println!("procfs breakout: {:?}", procfs_breakout(host_root));
println!("{:?}", procfs_breakout(host_root));
Ok(()) Ok(())
} }