diff --git a/Cargo.toml b/Cargo.toml index dce9cbc..ff11de8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "snekdown" -version = "0.8.3" +version = "0.8.4" authors = ["trivernis "] edition = "2018" license-file = "LICENSE" diff --git a/src/main.rs b/src/main.rs index ad91428..170ae75 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,15 +29,6 @@ fn main() { ); return; } - if !opt.output.exists() { - println!( - "{} The output file {} could not be found{}", - Fg(Red), - opt.output.to_str().unwrap(), - style::Reset - ); - return; - } let start = Instant::now(); let mut parser = Parser::new_from_file(opt.input.to_str().unwrap().to_string()).unwrap(); let document = parser.parse();