You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/03/12 21:34:03 UTC

svn commit: r1080999 - /tapestry/tapestry5/trunk/tapestry-core/build.gradle

Author: hlship
Date: Sat Mar 12 20:34:03 2011
New Revision: 1080999

URL: http://svn.apache.org/viewvc?rev=1080999&view=rev
Log:
TAP5-116: Add note about potential problem with path names and spaces

Modified:
    tapestry/tapestry5/trunk/tapestry-core/build.gradle

Modified: tapestry/tapestry5/trunk/tapestry-core/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/build.gradle?rev=1080999&r1=1080998&r2=1080999&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-core/build.gradle Sat Mar 12 20:34:03 2011
@@ -36,6 +36,8 @@ task generateGrammarSource(
   
   mkdir(antlrOutput)
   
+  // Might have a problem here if the current directory has a space in its name
+  
   def grammars = fileTree(antlrSource).include("**/*.g")
     
   ant.java(classname: 'org.antlr.Tool', fork: true, classpath: "${configurations.antlr3.asPath}") {