authorgravatar for mail@isaacfreund.comIsaac Freund <mail@isaacfreund.com> 2021-04-19 22:50:00+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-04-19 16:55:12-04:00
loge2cc02717e2c0180acfd2c5d0160b56721ae2397
treeb552d144d4a198534a21841f20f842ecb634ebec
parentd605f02756038c8f1328b3478635ed9518d38239

Fix .gitattributes rules that should be recursive

These are currently incorrect according to the gitattributes(5) and gitignore(5) man pages. However, it seems github ended up treating them as we intended due to a bug until recently when that bug was fixed.

1 files changed, 6 insertions(+), 6 deletions(-)

.gitattributes+6-6
......@@ -3,9 +3,9 @@
33langref.html.in text eol=lf
44deps/SoftFloat-3e/*.txt text eol=crlf
55
6deps/* linguist-vendored
7lib/include/* linguist-vendored
8lib/libc/* linguist-vendored
9lib/libcxx/* linguist-vendored
10lib/libcxxabi/* linguist-vendored
11lib/libunwind/* linguist-vendored
6deps/** linguist-vendored
7lib/include/** linguist-vendored
8lib/libc/** linguist-vendored
9lib/libcxx/** linguist-vendored
10lib/libcxxabi/** linguist-vendored
11lib/libunwind/** linguist-vendored