monitoring
This commit is contained in:
parent
cf5285e14a
commit
35f2394f5f
3 changed files with 59 additions and 1 deletions
9
check_git.sh
Executable file
9
check_git.sh
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
if git diff-index --quiet HEAD --; then
|
||||
# no change
|
||||
exit 0
|
||||
else
|
||||
# change
|
||||
exit 1
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue