aboutsummaryrefslogtreecommitdiff
path: root/tools/checkstyle.sh
blob: 542756932d27c4547427e3d01896ccbc16d3d94b (plain)
1
2
3
4
5
6
7
8
9
#!/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