build controller

This commit is contained in:
2024-08-23 17:29:08 +03:00
parent 570dbf747e
commit 4165bfb95d
+1 -1
View File
@@ -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");
}