9 lines
No EOL
111 B
Bash
Executable file
9 lines
No EOL
111 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if git diff-index --quiet HEAD --; then
|
|
# no change
|
|
exit 0
|
|
else
|
|
# change
|
|
exit 1
|
|
fi |