From 308d47ec6c336ea70ed2a38aab560afc952dc554 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Thu, 30 Oct 2025 11:31:50 -0700 Subject: [PATCH] moar --- .github/workflows/pre-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 63f1a0d0f..d10161d93 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -63,7 +63,7 @@ jobs: id: precommit run: | set +e - pre-commit run --show-diff-on-failure --color=always --all-files 2>&1 | tee precommit.log + pre-commit run --show-diff-on-failure --color=always --all-files 2>&1 | tee /tmp/precommit.log status=${PIPESTATUS[0]} echo "status=$status" >> $GITHUB_OUTPUT exit 0 @@ -77,7 +77,7 @@ jobs: echo "::error::Pre-commit hooks failed. Please run 'pre-commit run --all-files' locally and commit the fixes." echo "" echo "Failed hooks output:" - cat precommit.log + cat /tmp/precommit.log exit 1 - name: Debug