From 9d25a616d180fd9f147055a7d67115aa4ce2a649 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Mon, 10 Sep 2012 11:35:57 -0400 Subject: [PATCH] Workaround for documentation problem. --- build.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.xml b/build.xml index a34603b680a..2d00a85eb38 100644 --- a/build.xml +++ b/build.xml @@ -39,6 +39,7 @@ <!-- Create dirs --> <mkdir dir="${builddir}/reports"/> <mkdir dir="${builddir}/reports/coverage"/> + <mkdir dir="${builddir}/apidocs"/> <!-- PHP CodeSniffer --> <exec command="phpcs --standard=PEAR --extensions=php --report=checkstyle ${srcdir}/module/VuFind/src > ${builddir}/reports/checkstyle.xml" escape="false" /> @@ -51,6 +52,8 @@ destdir="${builddir}/apidocs"> <fileset dir="."> <include name="module/VuFind/src/**/*.php" /> + <!-- This file breaks phpdoc2; exclude until we can figure out why: --> + <exclude name="module/VuFind/src/VuFind/Log/Writer/Stream.php" /> </fileset> </phpdoc2> -- GitLab