diff --git a/src/main.rs b/src/main.rs index ffdd2aa..2202253 100644 --- a/src/main.rs +++ b/src/main.rs @@ -39,7 +39,9 @@ fn main_entry() -> eyre::Result<()> { .default("re_chunk_000.pak.sub_000.pak".to_string()) .with_prompt("Input .pak file path") .interact_text() - .unwrap(); + .unwrap() + .trim_matches(|c| c == '\"' || c == '\'') + .to_string(); let input_path = Path::new(&input); if !input_path.is_file() {