monitoring

This commit is contained in:
Yax 2021-02-01 19:25:00 +01:00
parent cf5285e14a
commit 35f2394f5f
3 changed files with 59 additions and 1 deletions

9
check_git.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
if git diff-index --quiet HEAD --; then
# no change
exit 0
else
# change
exit 1
fi