ソースを参照

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();
         DEB "Scanning " << dir.path();
         if(!dir.exists()) {
         if(!dir.exists()) {
             DEB"Creating " << dir.path();
             DEB"Creating " << dir.path();
-            dir.mkdir(path);
+            dir.mkpath(path);
         }
         }
     }
     }
 }
 }