I didn't realize I committed that change

This commit is contained in:
Joshua Ferguson 2023-12-30 18:06:01 -06:00
parent 2d04dfd0fc
commit e878c288f9
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ impl<'a> Exporter<'a> {
/// Export notes using the settings configured on this exporter.
pub fn run(&mut self) -> Result<()> {
if !self.root.canonicalize().unwrap().exists() {
if !self.root.exists() {
return Err(ExportError::PathDoesNotExist {
path: self.root.clone(),
});