Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 41365ce

Browse files
committed
Merge pull request #44 from edhgoose/patch-1
Change readme ant task slightly
2 parents 137a8a6 + 67628a1 commit 41365ce

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,11 @@ or setting for ANT:
5454

5555
<target name="parallel-lint" description="Run PHP parallel lint">
5656
<exec executable="${parallel-lint}" failonerror="true">
57-
<arg line='--exclude ${basedir}/app/' />
58-
<arg line='--exclude ${basedir}/vendor/' />
59-
<arg line='${basedir}' />
57+
<arg line="--exclude" />
58+
<arg path="${basedir}/app/" />
59+
<arg line="--exclude" />
60+
<arg path="${basedir}/vendor/" />
61+
<arg path="${basedir}" />
6062
</exec>
6163
</target>
6264
```

0 commit comments

Comments
 (0)