@@ -59,11 +59,11 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | // Tasks |
| 61 | 61 | |
| 62 | -task('build', function () { |
|
| 62 | +task('build', function() { |
|
| 63 | 63 | run('cd {{release_path}} && build'); |
| 64 | 64 | }); |
| 65 | 65 | |
| 66 | -task('deploy:stop-workers', function () { |
|
| 66 | +task('deploy:stop-workers', function() { |
|
| 67 | 67 | // Hack alert: https://stackoverflow.com/a/63652279/300836 |
| 68 | 68 | // We've just move the previous release out of the way, but it's |
| 69 | 69 | // the previous release's cache that has the details of the |
@@ -74,12 +74,12 @@ discard block |
||
| 74 | 74 | })->desc('Stop any existing messenger consumers; Supervisor will restart them.'); |
| 75 | 75 | |
| 76 | 76 | // Testing |
| 77 | -task('pwd', function () { |
|
| 77 | +task('pwd', function() { |
|
| 78 | 78 | $result = run('pwd'); |
| 79 | 79 | writeln("Current dir: $result"); |
| 80 | 80 | }); |
| 81 | 81 | |
| 82 | -task('test', function () { |
|
| 82 | +task('test', function() { |
|
| 83 | 83 | writeln('Hello world'); |
| 84 | 84 | }); |
| 85 | 85 | |