From 1e2a75a19ca4b340bae55728414daf330be673ae Mon Sep 17 00:00:00 2001 From: Karl Tauber Date: Sun, 26 Oct 2025 19:44:58 +0100 Subject: [PATCH] sigtest: fix line separators for file generated by sigtest (default is a mix of cr+lf and lf on Windows) --- flatlaf-core/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flatlaf-core/build.gradle.kts b/flatlaf-core/build.gradle.kts index f02a413d..5e35c827 100644 --- a/flatlaf-core/build.gradle.kts +++ b/flatlaf-core/build.gradle.kts @@ -113,6 +113,10 @@ tasks { "version" to version, "release" to "1.8", // Java version "failonerror" to "true" ) + + "fixcrlf"( + "file" to "${project.name}-sigtest.txt", + "eol" to "lf" ) } } }