소스 검색

fixed a bug with result and maildir creation on the first run

Yurii Sokolovskyi 1 일 전
부모
커밋
e8f951b2f5
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/main.rs

+ 4 - 0
src/main.rs

@@ -399,6 +399,10 @@ async fn run(){
     // parse args from CLI
     parse_args();
 
+    // create all folders
+    fs::create_dir_all(Config::global().out_dir.clone()).unwrap();
+    fs::create_dir_all(Config::global().maildir.clone()).unwrap();
+
     // monitor the sonic server
     SONIC_MONITOR.run();