From 92e292f0a22c2da544c2e33132912563a63abcb5 Mon Sep 17 00:00:00 2001 From: Corey Sotiropoulos Date: Sun, 30 Jun 2024 11:40:20 -0400 Subject: [PATCH] Fix cpp ci only reporting stderr --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 059b364eeaf..d3164eaf69e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,7 +78,7 @@ jobs: for changed_file in ${{ steps.changed-files.outputs.all }}; do if [[ -f $changed_file ]]; then if [[ $changed_file == *.cpp ]]; then - bash tools/ci/cpp.sh ${changed_file} 2>> cpp_checks.txt || true + bash tools/ci/cpp.sh ${changed_file} 2>> cpp_checks.txt >> cpp_checks.txt || true fi fi done