summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorLeorize <leorize+oss@disroot.org>2020-03-16 23:05:53 -0500
committerAndreas Rumpf <rumpf_a@web.de>2020-03-17 08:48:42 +0100
commit5017320e7b4303c24c5585dc5c4536abc85a3dd8 (patch)
treefb0f00834e7caf89b80b31c36c03cbc91c5e8cc0
parent6e4cd3e5bfcad550f423ae538909e3c73a95f445 (diff)
downloadNim-5017320e7b4303c24c5585dc5c4536abc85a3dd8.tar.gz
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
-rw-r--r--.gitattributes2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitattributes b/.gitattributes
index 43aa0f580..a7cd44ba6 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