From 0a2b91bf9d9db282e404246674d47f3f714236fd Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 23 Feb 2015 21:36:57 +0100 Subject: [PATCH] make: only check the actual PHP directory for `style' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d86a20448..fc4430786 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ sweep: xargs -0 -n1 scripts/cleanfile style: - @(phpcs --tab-width=4 --standard=PSR2 ${.CURDIR}/src/opnsense \ + @(phpcs --tab-width=4 --standard=PSR2 ${.CURDIR}/src/opnsense/mvc \ || true) > ${.CURDIR}/.style.out @echo -n "Total number of style warnings: " @grep '| WARNING' ${.CURDIR}/.style.out | wc -l