Skip to content

Commit

Permalink
Merge pull request #168 from palantirnet/update-code-fix-command
Browse files Browse the repository at this point in the history
use --extensions instead of --ignore in "code-fix" target
  • Loading branch information
becw authored Oct 15, 2021
2 parents 0217134 + 398587f commit 2230d96
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 2230d96

Please sign in to comment.