We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f337940 commit 1922350Copy full SHA for 1922350
1 file changed
run-tca.sh
@@ -90,6 +90,7 @@ TCA_COMMAND="tca analyze $ARGS || true"
90
debug "Running TCA command: $TCA_COMMAND"
91
TMP_OUTPUT=$(mktemp)
92
TMP_ERROR=$(mktemp)
93
+tca analyze $ARGS
94
eval $TCA_COMMAND > "$TMP_OUTPUT" 2> "$TMP_ERROR"
95
EXIT_CODE=$? # Capture the exit code
96
set -e
@@ -116,6 +117,7 @@ debug "TCA analysis completed"
116
117
if [[ "${RUNNER_DEBUG:-}" == "1" ]]; then
118
debug "Raw TCA output:"
119
cat "$TMP_OUTPUT"
120
+ cat "$TMP_ERROR"
121
fi
122
123
# Check if there are no issues
0 commit comments