소스 검색

Added the Linux file not found error

Apollo 1 개월 전
부모
커밋
7e98e22545
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main.rs

+ 1 - 1
src/main.rs

@@ -33,7 +33,7 @@ fn main() -> Result<(), anyhow::Error> {
             println!("{}", c);
         }
         Err(err) => {
-            if err.to_string() != "The system cannot find the file specified. (os error 2)".to_string() {
+            if err.to_string() != "The system cannot find the file specified. (os error 2)".to_string() && err.to_string() != "No such file or directory (os error 2)".to_string() {
                 anyhow::bail!(err);
             }
             let mut index = TileIndex::new();