8 lines
99 B
Bash
Executable File
8 lines
99 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
DIFF=$( git diff . )
|
|
if [ "$DIFF" != "" ]; then
|
|
echo "$DIFF" >&2
|
|
exit 1
|
|
fi
|