summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.xml2
-rw-r--r--buildscripts/phing/tasks/ManualIndexTask.php2
2 files changed, 3 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index f50b8b40..a85b64d0 100644
--- a/build.xml
+++ b/build.xml
@@ -78,6 +78,8 @@
<exclude name="**/*~"/>
<exclude name="**/runtime/*"/>
<exclude name="**/assets/*"/>
+ <exclude name="**/runtime/*/**"/>
+ <exclude name="**/assets/*/**"/>
<exclude name="demos/blog/protected/Data/Blog.db" />
<include name="demos/**/*"/>
</fileset>
diff --git a/buildscripts/phing/tasks/ManualIndexTask.php b/buildscripts/phing/tasks/ManualIndexTask.php
index 5b0febc6..1725880f 100644
--- a/buildscripts/phing/tasks/ManualIndexTask.php
+++ b/buildscripts/phing/tasks/ManualIndexTask.php
@@ -29,7 +29,7 @@ class ManualIndexTask extends Task
$zend_path = $srcdir.'/demos/quickstart/protected/index';
set_include_path(get_include_path().PATH_SEPARATOR.realpath($zend_path));
require_once ('Zend/Search/Lucene.php');
- require_once($srcdir.'/buildscripts/index/API_index.php');
+ require_once($srcdir.'/buildscripts/index/api_index.php');
$api = new api_index($this->todir, realpath($this->docdir));
$api->create_index();
}