From 01854538d4e5f3a22e944bc4fd3e613fc5a8a782 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 21 Feb 2024 13:20:41 +0000 Subject: [PATCH] Disable timeout for install command --- src/Console/Command/InstallCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Console/Command/InstallCommand.php b/src/Console/Command/InstallCommand.php index 94606d5..8dc0a83 100644 --- a/src/Console/Command/InstallCommand.php +++ b/src/Console/Command/InstallCommand.php @@ -20,6 +20,7 @@ final class InstallCommand extends AbstractCommand workingDir: $this->workingDir, ); + $process->setTimeout(null); $process->run(); return Command::SUCCESS;