We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e7880e commit 529ce1dCopy full SHA for 529ce1d
moatless/runtime/local.py
@@ -69,7 +69,7 @@ async def execute(self, command: str, fail_on_error: bool = False, patch: str |
69
70
if self._install_after_patch and self._install_command:
71
logger.info(f"Installing after patch with command: {self._install_command}")
72
- stdout, return_code = await self._execute_command(self._install_command)
+ stdout, return_code = await self._execute_command(self._install_command, timeout=timeout)
73
logger.info(f"Installation output: {stdout} {return_code}")
74
75
stdout, return_code = await self._execute_command(command, timeout=timeout)
0 commit comments