summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorxue <>2006-06-19 13:49:56 +0000
committerxue <>2006-06-19 13:49:56 +0000
commit8b32c05149f32e29a32a5663493687fd836fc7b2 (patch)
treebdcb2fed4b186844b58e60d44cb2ee6f68f6516c /buildscripts
parentcb1021da880b5200fdfe87e43d96a86de811e482 (diff)
Fixed an issue about excluding contents under runtime/assets.
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/phing/tasks/ManualIndexTask.php2
1 files changed, 1 insertions, 1 deletions
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();
}