From 4998bb433b9c7baa88e3e3d3e843c0ccbbef9f95 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Fri, 10 Apr 2026 20:50:32 +0200 Subject: Refined dev role Now it uses wrapped tool scripts instead of raw bash commands. Together with JSON function mapping this enables better use-case fitting and less errors in tool usage (e.g. partial file writes with out-of-context deletions). --- tools/execute_command.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/execute_command.sh') diff --git a/tools/execute_command.sh b/tools/execute_command.sh index b98aa55..c6504bf 100755 --- a/tools/execute_command.sh +++ b/tools/execute_command.sh @@ -68,7 +68,7 @@ main() { # Run command (do not let failures exit the tool) set +e - bash -lc "$cmd" >"$out_file" 2>"$err_file" + : | bash -lc "$cmd" >"$out_file" 2>"$err_file" rc=$? set -e -- cgit v1.2.3