From f5dd861ef1ed2d4d00477cbd30785daaaf9ce41c Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 23 May 2025 19:13:09 +0200 Subject: [PATCH] fix: deploy command order --- build/deploy.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/deploy.php b/build/deploy.php index 03cd932..05c9efb 100644 --- a/build/deploy.php +++ b/build/deploy.php @@ -55,16 +55,16 @@ set('rsync', [ 'timeout' => 300 ]); -task('typo3:extension:setup', function () { - cd('{{release_path}}'); - run('{{bin/php}} bin/typo3 extension:setup'); -}); - task('typo3:cache:flush', function() { cd('current'); run('{{bin/php}} bin/typo3 cache:flush'); }); +task('typo3:extension:setup', function () { + cd('{{release_path}}'); + run('{{bin/php}} bin/typo3 extension:setup'); +}); + task('typo3:cache:warmup', function() { cd('current'); run('{{bin/php}} bin/typo3 cache:warmup');