From 5017320e7b4303c24c5585dc5c4536abc85a3dd8 Mon Sep 17 00:00:00 2001 From: Leorize Date: Mon, 16 Mar 2020 23:05:53 -0500 Subject: [PATCH] gitattributes: fix tests for windows Nim-generated files used in tests all end in LF, so we tell git to not touch them. Should allow a Windows user to clone and run tests without having to tweak their git settings --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 43aa0f5808..a7cd44ba66 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,2 @@ # tests expects the text files associated with them have LF only as EOL -tests/**/*.txt text eol=lf +**/test*/**/* text eol=lf