mirror of https://github.com/mosra/magnum.git
Browse Source
Because no way I'm doing that conversion and diffing by hand every time.pull/594/head
3 changed files with 20 additions and 3 deletions
@ -0,0 +1,11 @@
|
||||
# You have to add the following to your .git/config or global |
||||
# ~/.gitconfig to make the binary diffs work (without the comment |
||||
# character, of course): |
||||
# |
||||
# [diff "hex"] |
||||
# textconv = hexdump -v -C |
||||
# binary = true |
||||
# |
||||
|
||||
*.bin binary diff=hex |
||||
*.ply binary diff=hex |
||||
@ -0,0 +1,8 @@
|
||||
#!/bin/bash |
||||
|
||||
set -e |
||||
|
||||
# in -> bin |
||||
for i in *.bin.in; do |
||||
../../../../../../magnum-plugins/src/MagnumPlugins/GltfImporter/Test/in2bin.py ${i} |
||||
done |
||||
Loading…
Reference in new issue