dex/scripts/git-diff
2017-12-01 10:32:04 -08:00

8 lines
99 B
Bash
Executable file

#!/bin/bash -e
DIFF=$( git diff . )
if [ "$DIFF" != "" ]; then
echo "$DIFF" >&2
exit 1
fi