Logging enabled. And fix on Excludes.

This commit is contained in:
Andrs Montaez
2011-11-27 11:05:06 -02:00
parent 8ed0154749
commit 67ca7b1e21
3 changed files with 25 additions and 5 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ class Mage_Task_BuiltIn_Deployment_Rsync
}
$command = 'rsync -avz '
. $this->_excludes($excludes + $userExcludes) . ' '
. $this->_excludes(array_merge($excludes, $userExcludes)) . ' '
. $this->_config['deploy']['deploy-from'] . ' '
. $this->_config['deploy']['user'] . '@' . $this->_config['deploy']['host'] . ':' . $this->_config['deploy']['deploy-to'];