mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 16:54:08 +01:00
8 lines
167 B
PHP
8 lines
167 B
PHP
<?php
|
|
namespace Deployer;
|
|
|
|
desc('Displays info about deployment');
|
|
task('deploy:info', function () {
|
|
info("deploying <fg=magenta;options=bold>{{target}}</>");
|
|
});
|