Skip to content

Commit e97e100

Browse files
committed
msys2-runtime(update-patches): generate the canonical stable checksums
In 111966f (msys2-runtime(update-patches.sh): do generate stable checksums for the Cygwin code, 2024-07-08), I identified a problem that needed fixing: `updpkgsums` would now use the SHA-256 of the tar archive generated from the Cygwin tag as the checksum for the first `source` array item. But that checksum would depend on the value of `core.autoCRLF`! Turns out that our CI uses the exact opposite value of the one I hard-coded. So let's fix that now. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent caf9b0d commit e97e100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msys2-runtime/update-patches.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ then
7272
exit 0
7373
fi
7474

75-
GIT_CONFIG_PARAMETERS="${GIT_CONFIG_PARAMETERS+$GIT_CONFIG_PARAMETERS }'core.autocrlf=false'" \
75+
GIT_CONFIG_PARAMETERS="${GIT_CONFIG_PARAMETERS+$GIT_CONFIG_PARAMETERS }'core.autocrlf=true'" \
7676
updpkgsums ||
7777
die "Could not update the patch set checksums in PKGBUILD"
7878

0 commit comments

Comments
 (0)