mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
7 lines
57 B
Bash
7 lines
57 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
diff "$@"
|
||
|
if [ "$?" = "2" ]; then
|
||
|
exit 1
|
||
|
fi
|