|
From: kosmirror <kos...@us...> - 2025-08-30 20:35:10
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via e36c93953498011fd1216ddd5a951be6452167a7 (commit)
from 857e4e69bd02f6df827a339cb0260c90c746d566 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e36c93953498011fd1216ddd5a951be6452167a7
Author: Paul Cercueil <pa...@cr...>
Date: Sat Aug 30 14:14:23 2025 +0200
CI: Fix overzealous whitespace check
The previous check would quite often cause false positives. Reduce the
scope of the check, now it only verifies that no spaces are added at the
end of lines.
Signed-off-by: Paul Cercueil <pa...@cr...>
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/whitespace.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/whitespace.yml b/.github/workflows/whitespace.yml
index 79027b72..a4a5b2d9 100644
--- a/.github/workflows/whitespace.yml
+++ b/.github/workflows/whitespace.yml
@@ -14,5 +14,5 @@ jobs:
run: |
git fetch origin ${{ github.base_ref }}:${{ github.base_ref }}
git diff ${{ github.base_ref }} >/tmp/diff1.txt
- git diff -w ${{ github.base_ref }} >/tmp/diff2.txt
+ git diff --ignore-space-at-eol ${{ github.base_ref }} >/tmp/diff2.txt
diff /tmp/diff1.txt /tmp/diff2.txt >/dev/null
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|