From b502127e2ef66d7878b848b4749d9accb4a8944a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Thu, 20 Aug 2026 12:12:18 +0200 Subject: [PATCH] fix: correct order of flushing caches during deployment --- deploy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.php b/deploy.php index e187eb72..631fec90 100644 --- a/deploy.php +++ b/deploy.php @@ -105,9 +105,9 @@ task('deploy', [ 'deploy:writable', 'typo3:database:migrate', 'typo3:language:update', - 'typo3:cache:flush', - 'cachetool:clear:opcache', 'deploy:publish', + 'cachetool:clear:opcache', + 'typo3:cache:flush', 'deploy:buspronet:symlink', ]);