diff --git a/src/Http/Controller/BuildController.php b/src/Http/Controller/BuildController.php index d1a68ce..7373ba8 100644 --- a/src/Http/Controller/BuildController.php +++ b/src/Http/Controller/BuildController.php @@ -28,7 +28,7 @@ class BuildController extends Controller unlink($buildLogFile); } - exec("cd " . base_path() . " && php8.2 artisan {$this->channelService->channel->generateCommand} > " . $buildLogFile . " 2>&1 & echo $!", $op); + exec("cd " . base_path() . " && php8.3 artisan {$this->channelService->channel->generateCommand} > " . $buildLogFile . " 2>&1 & echo $!", $op); $pid = (int)$op[0]; return redirect($this->channelService->channel->lucentUrl . "/build-report"); }