From 387e599c2ba950d9697cf70575fbfbcf4dd720ed Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 18 Jan 2013 13:08:31 -0500 Subject: [PATCH] More specific exclude for phpcpd (best we can do until this issue is resolved: https://github.com/sebastianbergmann/phpcpd/issues/10) --- build.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.xml b/build.xml index d80d23eac0b..251be2bb6b0 100644 --- a/build.xml +++ b/build.xml @@ -67,7 +67,7 @@ <!-- PHP copy-and-paste detection --> <target name="phpcpd"> - <exec command="phpcpd --log-pmd ${builddir}/reports/pmd-cpd.xml --exclude ${srcdir}/module/VuFind/tests/* ${srcdir}/module" /> + <exec command="phpcpd --log-pmd ${builddir}/reports/pmd-cpd.xml --exclude ${srcdir}/module/VuFind/tests/unit-tests/src/Auth ${srcdir}/module" /> </target> <!-- PHP CodeSniffer --> -- GitLab