mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-10 07:18:10 -05:00
Fix for issue where static system commands are truncated (#10292)
Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
@@ -1038,7 +1038,9 @@ fi
|
||||
self, command: str, cwd: str | None
|
||||
) -> CommandResult:
|
||||
"""This function is used by the GitHandler to execute shell commands."""
|
||||
obs = self.run(CmdRunAction(command=command, is_static=True, cwd=cwd))
|
||||
obs = self.run(
|
||||
CmdRunAction(command=command, is_static=True, hidden=True, cwd=cwd)
|
||||
)
|
||||
exit_code = 0
|
||||
content = ''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user