Bugfix on host:port config.

This commit is contained in:
Andrs Montaez
2012-02-15 19:22:10 -02:00
parent 4863990f68
commit 6bd9d888df
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ class Mage_Task_BuiltIn_Deployment_Rsync
. '--rsh="ssh -p' . $this->_config->getHostPort() . '" '
. $this->_excludes(array_merge($excludes, $userExcludes)) . ' '
. $this->_config->deployment('from') . ' '
. $this->_config->deployment('user') . '@' . $this->_config->getHost() . ':' . $deployToDirectory;
. $this->_config->deployment('user') . '@' . $this->_config->getHostName() . ':' . $deployToDirectory;
$result = $this->_runLocalCommand($command);
+1 -1
View File
@@ -47,7 +47,7 @@ abstract class Mage_Task_TaskAbstract
$localCommand = 'ssh -p ' . $this->_config->getHostPort() . ' '
. '-q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '
. $this->_config->deployment('user') . '@' . $this->_config->getHost() . ' '
. $this->_config->deployment('user') . '@' . $this->_config->getHostName() . ' '
. '"cd ' . rtrim($this->_config->deployment('to'), '/') . $releasesDirectory . ' && '
. $command . '"';