Procházet zdrojové kódy

Changed mkdir to mkpath in AStandardPaths::scan_paths

George před 4 roky
rodič
revize
682a7441c9
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);
         }
     }
 }