svn: /web/doc-editor/trunk/scripts/cron/ check_build.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Tue, 24 Nov 2009 19:28:17 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=291279
Log:
fix path for configure.php
Changed paths:
U web/doc-editor/trunk/scripts/cron/check_build.php
Modified: web/doc-editor/trunk/scripts/cron/check_build.php
===================================================================
--- web/doc-editor/trunk/scripts/cron/check_build.php 2009-11-24 17:43:20 UTC (rev 291278)
+++ web/doc-editor/trunk/scripts/cron/check_build.php 2009-11-24 19:28:17 UTC (rev 291279)
@@ -14,8 +14,8 @@
// For all language, we check the build
foreach (RepositoryManager::getInstance()->availableLang as $lang) {
-
- $cmd = 'cd '.DOC_EDITOR_VCS_PATH.';/usr/bin/php configure.php --with-lang='.$lang.' --disable-segfault-error';
+echo DOC_EDITOR_VCS_PATH;
+ $cmd = 'cd '.DOC_EDITOR_VCS_PATH.'/doc-base/;/usr/bin/php configure.php --with-lang='.$lang.' --disable-segfault-error';
$output = array();
exec($cmd, $output);