lib directory deduction now covers all possible cases.
This commit is contained in:
parent
f3245d4389
commit
325f0cc46d
1 changed files with 10 additions and 3 deletions
|
@ -29,7 +29,7 @@
|
||||||
* @link www.phpdoctrine.com
|
* @link www.phpdoctrine.com
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (count($argv) < 2) {
|
if (count($argv) < 2) {
|
||||||
echo "Usage: bundle.php [Target file] <Library directory>\n\n".
|
echo "Usage: bundle.php [Target file] <Library directory>\n\n".
|
||||||
"Note: If the library directory is ommited, the path will be deducted if possible\n";
|
"Note: If the library directory is ommited, the path will be deducted if possible\n";
|
||||||
|
@ -39,8 +39,15 @@ if (count($argv) < 2) {
|
||||||
} else {
|
} else {
|
||||||
$pathInfos = pathinfo($_SERVER['PHP_SELF']);
|
$pathInfos = pathinfo($_SERVER['PHP_SELF']);
|
||||||
|
|
||||||
$doctrineBaseDir = str_replace('tools/cli/'. $pathInfos['basename'],
|
$Cnt = 0;
|
||||||
'lib', getcwd() .'/'. $_SERVER['SCRIPT_NAME'], $Cnt);
|
|
||||||
|
if ($_SERVER['PHP_SELF'][0] == '/') {
|
||||||
|
$doctrineBaseDir = str_replace('tools/cli/' . $pathInfos['basename'],
|
||||||
|
'lib', $_SERVER['SCRIPT_NAME'], &$Cnt);
|
||||||
|
} else {
|
||||||
|
$doctrineBaseDir = str_replace('tools/cli/'. $pathInfos['basename'],
|
||||||
|
'lib', getcwd() .'/'. $_SERVER['SCRIPT_NAME'], &$Cnt);
|
||||||
|
}
|
||||||
|
|
||||||
if ($Cnt != 1) {
|
if ($Cnt != 1) {
|
||||||
echo "Can't find library directory, please specify it as an argument\n";
|
echo "Can't find library directory, please specify it as an argument\n";
|
||||||
|
|
Loading…
Add table
Reference in a new issue