2012-02-05 03:42:54 +01:00
|
|
|
<?php
|
2013-11-05 17:12:09 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the Magallanes package.
|
|
|
|
*
|
|
|
|
* (c) Andrés Montañez <andres@andresmontanez.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2012-02-05 03:42:54 +01:00
|
|
|
class Mage_Task_BuiltIn_Scm_RemoveClone
|
|
|
|
extends Mage_Task_TaskAbstract
|
|
|
|
{
|
|
|
|
private $_name = 'SCM Remove Clone [built-in]';
|
|
|
|
private $_source = null;
|
2012-09-21 05:23:07 +02:00
|
|
|
|
2012-02-05 03:42:54 +01:00
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return $this->_name;
|
|
|
|
}
|
|
|
|
|
2012-09-21 05:23:07 +02:00
|
|
|
public function init()
|
2012-02-05 03:42:54 +01:00
|
|
|
{
|
2012-09-21 05:23:07 +02:00
|
|
|
$this->_source = $this->getConfig()->deployment('source');
|
2012-02-05 03:42:54 +01:00
|
|
|
}
|
2012-09-21 05:23:07 +02:00
|
|
|
|
2012-02-05 03:42:54 +01:00
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
return $this->_runLocalCommand('rm -rf ' . $this->_source['temporal']);
|
|
|
|
}
|
|
|
|
}
|