diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-05-12 09:49:19 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-05-12 09:49:19 +0200 |
commit | 0325e9e03b62b6bbb3dd4abf7f20dd40b3959329 (patch) | |
tree | 5d951bcab136fbce26db3f72bfed1ec790c58ca2 | |
parent | 66b0b0c153aa6b811c4ea3c0e5edddd7f2cb8062 (diff) |
Mark `*.tza` files as binary in `.gitattributes` for old Git versions
This prevents `thirdparty/oidn/weights/rtlightmap_hdr.tza` from always being
considered as modified when using an old Git version (such as the one on
Ubuntu 16.04).
-rw-r--r-- | .gitattributes | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 40a5e6183f..88c00855d8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -13,3 +13,4 @@ thirdparty/* linguist-vendored *.jar binary *.png binary *.ttf binary +*.tza binary |