remove: unneeded check.

This commit is contained in:
Darshan
2026-01-25 11:33:24 +05:30
parent d4dd6cf634
commit a9da80687f
@@ -122,10 +122,6 @@ class Server
private function killInstallerDevServers(): void
{
if (PHP_OS_FAMILY === 'Windows') {
return;
}
$pattern = 'php -S .*app/views/install';
$command = 'pkill -f ' . escapeshellarg($pattern) . ' >/dev/null 2>&1';
exec($command);