Browse Source

Fix typo in GitRebase Deploy strategy.

1.0
Andrés Montañez 11 years ago
parent
commit
ceee587bb0
  1. 2
      Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php

2
Mage/Task/BuiltIn/Deployment/Strategy/GitRebaseTask.php

@ -70,7 +70,7 @@ class GitRebaseTask extends AbstractTask implements IsReleaseAware
// If Stashed, restore. // If Stashed, restore.
if ($stashed) { if ($stashed) {
$command = 'git tash pop'; $command = 'git stash pop';
$result = $this->runCommandRemote($command) && $result; $result = $this->runCommandRemote($command) && $result;
} }

Loading…
Cancel
Save