You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ni...@apache.org on 2004/05/30 00:47:27 UTC

svn commit: rev 20612 - avalon/trunk/tools/magic/xdoc/src/dist

Author: niclas
Date: Sat May 29 15:47:26 2004
New Revision: 20612

Modified:
   avalon/trunk/tools/magic/xdoc/src/dist/magic.bsh
Log:
Fixed so that the '/' is relative the document root and not resource/. What was I thinking?

Modified: avalon/trunk/tools/magic/xdoc/src/dist/magic.bsh
==============================================================================
--- avalon/trunk/tools/magic/xdoc/src/dist/magic.bsh	(original)
+++ avalon/trunk/tools/magic/xdoc/src/dist/magic.bsh	Sat May 29 15:47:26 2004
@@ -139,8 +139,7 @@
     private void copyResources( File fromDir )
     {
         File destDir = new File( m_Context.getProperty( "xdoc.dest.dir" ) );
-        File toDir = new File( destDir, "resources" );
-        copy( fromDir, toDir, "**/*", "" );
+        copy( fromDir, destDir, "**/*", "" );
     }
     
     private void copy( File fromDir, File toDir, String includes, String excludes )

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org