From a9da80687fd5e0c603ee5697cf1d4232df7ae971 Mon Sep 17 00:00:00 2001 From: Darshan Date: Sun, 25 Jan 2026 11:33:24 +0530 Subject: [PATCH] remove: unneeded check. --- src/Appwrite/Platform/Installer/Server.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Appwrite/Platform/Installer/Server.php b/src/Appwrite/Platform/Installer/Server.php index 14a815cac4..edaccb293e 100644 --- a/src/Appwrite/Platform/Installer/Server.php +++ b/src/Appwrite/Platform/Installer/Server.php @@ -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);