RE: zip empty directories

2010-05-27 Thread Wray, Nathan
I'm assuming you tried whenempty="create" ? The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you r

RE: Looping number of times

2010-05-12 Thread Wray, Nathan
End needs to be strictly greater than begin. Change end to 2 and you should be ok. The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it,

RE: Running parallel targets in Ant loop

2009-11-11 Thread Wray, Nathan
Harry, put the parallel inside the sequential. They aren't a pair where you would choose one or the other. The sequential task has hooks that let the loop structure set the variable for you. Inside sequential, you can access idx as @{idx} rather than the more usual ${idx}

RE: Creating a fileset from a list of filenames

2009-11-03 Thread Wray, Nathan
Hi David, It has to do with the procedures I'm trying to piggyback onto. The ant target creates some required code review documentation. The goal is to have the ant target fail, rather than having the commit fail as you typically would with a pre-commit hook script (or a report as you might wit

Creating a fileset from a list of filenames

2009-11-03 Thread Wray, Nathan
Hi All; I'm trying to identify modified java files in an SVN working copy and run checkstyle on these files. So far I've got a property with a list of everything modified like: /path/file1;/path/file2;/path/file3 It seems like I need something the opposite of pathconvert to turn this p