From e3e3128464e1a488cd14b8d29a3d24eac3572dbb Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Mon, 16 Mar 2020 19:55:22 +0100 Subject: bug: Fix Gradle build on Windows This change adds a workaround for the Windows build where Gradle fails to compile the Kotlin code in `buildSrc` due to CRLF line endings. See https://github.com/gradle/gradle/issues/12248 --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitattributes') diff --git a/.gitattributes b/.gitattributes index 71fa4d41..12924725 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,3 +2,6 @@ # # These are explicitly windows files and should use crlf *.bat text eol=crlf + +# See https://github.com/gradle/gradle/issues/12248 +buildSrc/src/main/**/*.gradle.kts text eol=lf -- cgit v1.2.3