Adding a protection to cake console be executed in driver root (windows). Fixes #1408.

This commit is contained in:
Juan Basso 2011-02-21 15:45:46 -03:00
parent 6338299e77
commit e1b3703c20
4 changed files with 6 additions and 3 deletions

View file

@ -244,6 +244,9 @@ class ShellDispatcher {
} }
$params = str_replace('\\', '/', $params); $params = str_replace('\\', '/', $params);
if (isset($params['working'])) {
$params['working'] = trim($params['working']);
}
if (!empty($params['working']) && (!isset($this->args[0]) || isset($this->args[0]) && $this->args[0]{0} !== '.')) { if (!empty($params['working']) && (!isset($this->args[0]) || isset($this->args[0]) && $this->args[0]{0} !== '.')) {
if (empty($this->params['app']) && $params['working'] != $params['root']) { if (empty($this->params['app']) && $params['working'] != $params['root']) {
$params['root'] = dirname($params['working']); $params['root'] = dirname($params['working']);