|
|
|
@ -35,6 +35,7 @@ class DeployCommand extends AbstractCommand implements RequiresEnvironment
|
|
|
|
|
const DEPLOY_STRATEGY_RSYNC = 'rsync'; |
|
|
|
|
const DEPLOY_STRATEGY_TARGZ = 'targz'; |
|
|
|
|
const DEPLOY_STRATEGY_GIT_REBASE = 'git-rebase'; |
|
|
|
|
const DEPLOY_STRATEGY_GIT_REMOTE_CACHE = 'git-remote-cache'; |
|
|
|
|
const DEPLOY_STRATEGY_GUESS = 'guess'; |
|
|
|
|
const DEFAULT_DEPLOY_STRATEGY = self::DEPLOY_STRATEGY_GUESS; |
|
|
|
|
|
|
|
|
@ -557,6 +558,10 @@ class DeployCommand extends AbstractCommand implements RequiresEnvironment
|
|
|
|
|
$deployStrategy = 'deployment/strategy/git-rebase'; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case self::DEPLOY_STRATEGY_GIT_REMOTE_CACHE: |
|
|
|
|
$deployStrategy = 'deployment/strategy/git-remote-cache'; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case self::DEPLOY_STRATEGY_GUESS: |
|
|
|
|
default: |
|
|
|
|
if ($this->getConfig()->release('enabled', false) == true) { |
|
|
|
|