From 110a4137d62111bbf7f39e3837beaa0933fe6df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Thu, 24 Apr 2025 20:39:44 +0200 Subject: [PATCH] fix: use correct php binary on prod with deployer --- deploy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.php b/deploy.php index 3711c8b..67f97e5 100644 --- a/deploy.php +++ b/deploy.php @@ -75,7 +75,7 @@ host('prod') ->setDeployPath('/kunden/tiefschnee.de/myep-next') ->set('writable_mode', 'chmod') ->set('http_user', 'ssh-53857-root') - ->set('bin/php', '/usr/bin/php81') + ->set('bin/php', '/usr/bin/php82') ->set('rsync_src', __DIR__) ->set('rsync', $rsyncOptions) ->set('cachetool_args', '--web=SymfonyHttpClient --web-path={{release_or_current_path}}/public/ --web-url=https://myep.ep-reisen.de')