mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 00:32:25 +01:00
10 lines
167 B
PHP
10 lines
167 B
PHP
<?php
|
|
|
|
namespace Deployer;
|
|
|
|
require __DIR__ . '/deploy.php';
|
|
|
|
task('deploy:update_code', function () {
|
|
upload(__FIXTURES__ . '/project/', '{{release_path}}');
|
|
});
|