Skip to content

Commit

Permalink
use --extensions instead of --ignore in "code-fix" target
Browse files Browse the repository at this point in the history
  • Loading branch information
byrond authored Aug 27, 2021
1 parent 0217134 commit 398587f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion defaults/install/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<!-- Target: code-fix -->
<target name="code-fix" description="Run the automated code fixer.">
<!-- Run PHP Code Beautifier and Fixer. -->
<property name="phpcbf.command" value="vendor/bin/phpcbf --standard=${phpcs.standard} --ignore=${phpcs.ignore} ${phpcs.directories}" />
<property name="phpcbf.command" value="vendor/bin/phpcbf --standard=${phpcs.standard} --extensions=${phpcs.extensions} ${phpcs.directories}" />
<echo msg="$> ${phpcbf.command}" />
<exec command="${phpcbf.command}" logoutput="true" checkreturn="false" />
</target>
Expand Down

0 comments on commit 398587f

Please sign in to comment.