diff -r c7c26511138f -r 7c4a911dc066 buildframework/helium/tools/preparation/preparation.antlib.xml --- a/buildframework/helium/tools/preparation/preparation.antlib.xml Wed Jun 16 16:51:40 2010 +0300 +++ b/buildframework/helium/tools/preparation/preparation.antlib.xml Fri Aug 13 14:59:05 2010 +0300 @@ -28,7 +28,7 @@ the output directory. 'threads' defines how many copy you would like in parallel, and verbose defines if you want the copying to be logged. --> - + @@ -56,11 +56,12 @@ } } if (attributes.get("verbose") != null) { - verbose = attributes.get("verbose"); + verbose = attributes.get("verbose"); } if (attributes.get("overwrite") != null) { - overwrite = attributes.get("overwrite"); + overwrite = attributes.get("overwrite"); } + // Creating the output dir Mkdir mkdir = new Mkdir(); mkdir.setProject(project); @@ -86,13 +87,13 @@ copy.setVerbose(new Boolean(verbose).booleanValue()); copy.setOverwrite(new Boolean(overwrite).booleanValue()); pt.addTask(copy); - } + } } } self.log("Starting parallel copying..."); pt.execute(); self.log("Copying completed."); -]]> + ]]>