Fix Kanban task 599 Launchpad [bug] 911172 Create storage directory
authorPete Fotheringham <pete.fotheringham@codethink.co.uk>
Thu, 12 Jan 2012 09:24:13 +0000 (09:24 +0000)
committerPete Fotheringham <pete.fotheringham@codethink.co.uk>
Thu, 12 Jan 2012 09:24:13 +0000 (09:24 +0000)
src/moonshot-local-flat-file-store.vala

index 22981f5..41f8273 100644 (file)
@@ -85,7 +85,7 @@ public class LocalFlatFileStore : Object, IIdentityCardStore {
                                     Config.PACKAGE_TARNAME);
                                     
         if (!FileUtils.test (path, FileTest.EXISTS)) {
-            DirUtils.create (path, 0700);
+            DirUtils.create_with_parents (path, 0700);
         }
         return path;
     }