diff options
Diffstat (limited to 'theme-compiler')
-rw-r--r-- | theme-compiler/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/theme-compiler/build.xml b/theme-compiler/build.xml index 1f9cddebd7..885cb6e589 100644 --- a/theme-compiler/build.xml +++ b/theme-compiler/build.xml @@ -43,7 +43,13 @@ <antcall target="common.clean" /> </target> - <target name="tests"> + <target name="checkstyle"> + <antcall target="common.checkstyle"> + <param name="cs.src" location="src" /> + </antcall> + </target> + + <target name="tests" depends="checkstyle"> <antcall target="common.tests.run" /> </target> |