Compare commits

...

2 commits

Author SHA1 Message Date
0a5d3e11e4
feat: add current directory display in main loop
All checks were successful
Release / Release (push) Successful in 34s
2024-08-28 13:01:08 +02:00
5961309bab
style(main): remove unused result warnings in main.rs
All checks were successful
Release / Release (push) Successful in 33s
2024-08-28 12:36:07 +02:00

View file

@ -2,8 +2,10 @@ use std::{env, io::{stdin, stdout, Write}, path::Path, process::{Child, Command,
fn main(){
loop {
println!("");
println!("{}", env::current_dir().unwrap().to_str().unwrap());
print!("> ");
stdout().flush();
let _ = stdout().flush();
let mut input = String::new();
stdin().read_line(&mut input).unwrap();
@ -66,7 +68,7 @@ fn main(){
if let Some(mut final_command) = previous_command {
// block until the final command has finished
final_command.wait();
let _ = final_command.wait();
}
}