blob: 542756932d27c4547427e3d01896ccbc16d3d94b [file] [log] [blame]
#!/bin/sh
DEFAULT_SRC_SOURCES=WordPress/src/main/java
if [ x"$1" == x ]; then
checkstyle -c cq-configs/checkstyle/checkstyle.xml -r $DEFAULT_SRC_SOURCES
else
checkstyle -c cq-configs/checkstyle/checkstyle.xml $@
fi