From 9bcf34fb1cdd784837bfd5e71cc2111224025f80 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 25 Jan 2024 01:27:42 -0800 Subject: [PATCH] grobble grobble --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index a531843..c7e062f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1522,10 +1522,10 @@ async fn compile(config:CompileConfig)->AResult<()>{ (||async move{//error catcher so I can use ? let ret2=if let Some(entry)=dir2.next_entry().await?{ //cull early even if supporting things with identical names is possible - if !exist_names.contains(entry.file_name().to_str().unwrap()){ - TooComplicated::Value(entry) - }else{ + if exist_names.contains(entry.file_name().to_str().unwrap()){ TooComplicated::Skip + }else{ + TooComplicated::Value(entry) } }else{ TooComplicated::Stop