removed unused lines

This commit is contained in:
Rusty Striker 2022-06-11 15:31:30 +03:00
parent 345f95b1ff
commit 8fde97c104
1 changed files with 2 additions and 3 deletions

View File

@ -17,7 +17,7 @@ static mut HOME_DIR: String = String::new();
fn main() {
let ops = read_ops();
println!("{:?}", ops);
if ops.folder.is_none() || ops.output.is_none() {
panic!("missing folder/output!");
}
@ -89,7 +89,6 @@ fn inject_file(file: &Path, output: &Path) {
);
},
}
}
}
else {
@ -186,4 +185,4 @@ fn read_ops() -> Ops {
}
ops
}
}