From e878c288f97098a33cf811b2a2e4b866eda81667 Mon Sep 17 00:00:00 2001 From: Joshua Ferguson Date: Sat, 30 Dec 2023 18:06:01 -0600 Subject: [PATCH] I didn't realize I committed that change --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 17d3330..b613c77 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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(), });