diff options
author | xue <> | 2006-06-19 13:49:56 +0000 |
---|---|---|
committer | xue <> | 2006-06-19 13:49:56 +0000 |
commit | 8b32c05149f32e29a32a5663493687fd836fc7b2 (patch) | |
tree | bdcb2fed4b186844b58e60d44cb2ee6f68f6516c | |
parent | cb1021da880b5200fdfe87e43d96a86de811e482 (diff) |
Fixed an issue about excluding contents under runtime/assets.
-rw-r--r-- | build.xml | 2 | ||||
-rw-r--r-- | buildscripts/phing/tasks/ManualIndexTask.php | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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();
}
|