mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-24 17:22:41 +01:00
28 lines
713 B
PHP
28 lines
713 B
PHP
<?php
|
|
/* (c) Anton Medvedev <anton@medv.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Deployer;
|
|
|
|
desc('Lock deploy');
|
|
task('deploy:lock', function () {
|
|
$locked = run("if [ -f {{deploy_path}}/.dep/deploy.lock ]; then echo 'true'; fi")->toBool();
|
|
|
|
if ($locked) {
|
|
throw new \RuntimeException(
|
|
"Deploy locked.\n" .
|
|
"Run deploy:unlock command to unlock."
|
|
);
|
|
} else {
|
|
run("touch {{deploy_path}}/.dep/deploy.lock");
|
|
}
|
|
});
|
|
|
|
desc('Unlock deploy');
|
|
task('deploy:unlock', function () {
|
|
run("rm -f {{deploy_path}}/.dep/deploy.lock");//always success
|
|
});
|