Merge pull request #2789 from jimklimov/ci-fix-oi
[networkupstools.git] / .gitattributes
blobb2943eda2f8c763aa0db91d5342e551c5a2a1cdf
1 # Windows script files should be CR+LF always:
2 *.bat text eol=crlf
4 # Unix/Linux script files should be LF always:
5 *.sh text eol=lf
6 *.m4 text eol=lf
7 *.ac text eol=lf
8 *.am text eol=lf
9 *.hwdb text eol=lf
11 # Aspell claims issues finding `utf-8\r` sometimes (from heading line of
12 # the dictionary file), with messages like this:
13 #   .cset" could not be opened for reading or does not exist.lib/aspell/utf-8
14 # which tends to happen in mixed-OS development environments. Tracer shows it:
15 #   read(3, "personal_ws-1.1 en 3225 utf-8\r\nA"..., 4096) = 4096
16 #   access("/usr/lib/aspell/utf-8\r.cset", F_OK) = -1 ENOENT (No such file or directory)
17 /docs/nut.dict text eol=lf
19 # Some files are binary always:
20 *.png bin
21 *.ico bin
23 # The rest are assumed text sources with platform-dependent EOL being okay,
24 # or we let Git guess otherwise:
25 * text=auto