OD 6.1 on DOS.
My doc root in TS is a mix of everything, HTML, JSP, images, flash, etc
Periodically, the JSP geeks rebuild the ear and I need to repush the JSPs wioth a deploy_all.
My deployment to the JSP server uses a source filter to only include JSP. However it builds all folders even if there are no JSPs in them. So I have a large images tree (with no files).
<source>
<fileSystem>
<remoteDiff area="$areavpath^">
<pathSpecification>
<path name="."/>
<filters>
<includePattern regex=".*\.jsp$"/>
</filters>
</pathSpecification>
</remoteDiff>
</fileSystem>
</source>
I know I can exclude the paths that *shouldn't* have a JSP, but that is not a great solution.
Any options out there ? I could DNR delete them, or ignore them (which is my current plan)
Andy