Skip to content

Commit

Permalink
Fix relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mrook committed Jan 4, 2013
1 parent 8273593 commit 5d44638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/etc/tasks/system/ApplyTest.xml
Expand Up @@ -204,15 +204,15 @@
</target>

<target name="testRelativeSourceFilenames">
<apply executable="ls" dir="${phing.home}" parallel="true" relative="true" >
<apply executable="ls" dir="${phing.home}/etc" parallel="true" relative="true" >
<fileset dir="${phing.home}/etc" >
<include name="*.xsl" />
</fileset>
</apply>
</target>

<target name="testSourceFilename">
<apply executable="ls" dir="${phing.home}" parallel="true" relative="true" addsourcefile="false">
<apply executable="ls" dir="${phing.home}/etc" parallel="true" relative="true" addsourcefile="false">
<fileset dir="${phing.home}/etc" >
<include name="*.xsl" />
</fileset>
Expand Down

0 comments on commit 5d44638

Please sign in to comment.