From 2704d5e26bc885a54090a3655968ab5efc74c121 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 18 Aug 2022 23:31:58 +0200 Subject: [PATCH] Check for whitespace problems relative to 3.2 branch, not master This should have been part of 42f4f2c7c7 (Run CI builds on 3.2 branch, not master, in this branch, 2022-07-04). --- .github/workflows/code_checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index c99ec8536d..ca9ed4ca94 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -40,9 +40,9 @@ jobs: - name: Check for trailing whitespace and TABs run: | - git fetch --depth=1 origin master + git fetch --depth=1 origin 3.2 git -c core.whitespace=blank-at-eol,blank-at-eof,space-before-tab,cr-at-eol,tab-in-indent \ - diff --check origin/master \ + diff --check origin/3.2 \ ':!.gitmodules' \ ':!Makefile.in' \ ':!config.guess' \