]> source.dussan.org Git - vaadin-framework.git/commitdiff
Allow the linker to handle deeper folder hierarchies inside the public 52/552/1
authormichael <michael@vaadin.com>
Fri, 21 Dec 2012 14:19:58 +0000 (16:19 +0200)
committermichael <michael@vaadin.com>
Fri, 21 Dec 2012 14:19:58 +0000 (16:19 +0200)
folder (#10593)

Change-Id: Ice5ed6f3d83fdc200201cd329089ed95b4e6744b

client-compiler/src/com/vaadin/sass/linker/SassLinker.java

index a568ca9672f0b161c3ee6dbc95f162f8fcbfb296..6aad66fc537b92aa3b2751a8772f7279f8ddbd84 100644 (file)
@@ -180,7 +180,7 @@ public class SassLinker extends AbstractLinker {
 
         File tempDir = new File(baseTempPath + File.separator + partialPath);
         if (!tempDir.exists()) {
-            tempDir.mkdir();
+            tempDir.mkdirs();
         }
 
         tempDir.deleteOnExit();