1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-09 16:32:39 +01:00
phorge-arcanist/scripts/repository/binary_safe_diff.sh

9 lines
80 B
Bash
Raw Normal View History

#!/bin/sh
diff "$@"
RES="$?"
if [ "$RES" = "2" ]; then
exit 1
fi
exit "$RES"