소스 검색

Changed mkdir to mkpath in AStandardPaths::scan_paths

George 4 년 전
부모
커밋
682a7441c9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/astandardpaths.cpp

+ 1 - 1
src/astandardpaths.cpp

@@ -22,7 +22,7 @@ void AStandardPaths::scan_paths()
         DEB "Scanning " << dir.path();
         if(!dir.exists()) {
             DEB"Creating " << dir.path();
-            dir.mkdir(path);
+            dir.mkpath(path);
         }
     }
 }