grobble grobble

This commit is contained in:
Quaternions 2024-01-25 01:27:42 -08:00
parent 79544c5a4b
commit 9bcf34fb1c

View File

@ -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