Skip to content

Commit

Permalink
remove phpdoc path
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapio committed Apr 23, 2016
1 parent 77dc568 commit 097ddb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion targets/codestyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<if>
<equals arg1="${codestyle.phpdoc.enabled}" arg2="true"/>
<then>
<exec command="${project.bin}/phpdoc -d ${project.src} --template=checkstyle -t ${project.build} --cache-folder=${project.build}/phpdoc-cache"
<exec command="phpdoc -d ${project.src} --template=checkstyle -t ${project.build} --cache-folder=${project.build}/phpdoc-cache"
passthru="true"/>
</then>
<else>
Expand Down
4 changes: 2 additions & 2 deletions targets/phpdoc/phpdoc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
<property name="phpdoc.config" value="${phing.commons.root}/targets/phpdoc/phpdoc.dist.xml" />
</else>
</if>
<exec command="${project.bin}/phpdoc -d ${project.src} -t ${project.build} -c ${phpdoc.config}"
<exec command="phpdoc -d ${project.src} -t ${project.build} -c ${phpdoc.config}"
passthru="true"/>
</then>
<else>
<echo level="notice" message="skipping because target is disabled"/>
</else>
</if>
</target>
</project>
</project>

0 comments on commit 097ddb0

Please sign in to comment.