Skip to content

Commit 27d8fd6

Browse files
committed
Remove set e on unix
1 parent 7776563 commit 27d8fd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/communication_protocols/cli/src/utcp_cli/cli_communication_protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def _build_combined_shell_script(self, commands: List[CommandStep], tool_args: D
299299
else:
300300
# Unix shell script
301301
script_lines.append('#!/bin/bash')
302-
script_lines.append('set -e') # Exit on error
302+
# Don't use set -e to allow error output capture and processing
303303
script_lines.append('# Variables to store command outputs')
304304

305305
# Execute each command and store output in variables

0 commit comments

Comments
 (0)