mirror of
				https://github.com/hauke68/Magallanes.git
				synced 2025-11-04 09:00:18 +01:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								class Mage_Command_BuiltIn_Unlock
							 | 
						||
| 
								 | 
							
								    extends Mage_Command_CommandAbstract
							 | 
						||
| 
								 | 
							
								    implements Mage_Command_RequiresEnvironment
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public function run()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        $lockFile = '.mage/' . $this->getConfig()->getEnvironment() . '.lock';
							 | 
						||
| 
								 | 
							
								        if (file_exists($lockFile)) {
							 | 
						||
| 
								 | 
							
								            @unlink($lockFile);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        Mage_Console::output('Unlocked deployment to <light_purple>' . $this->getConfig()->getEnvironment() . '</light_purple> environment', 1, 2);
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								}
							 |