auto update hooks

This commit is contained in:
piair 2024-04-26 15:35:37 +02:00
parent 304a222de1
commit 6729703827
2 changed files with 13 additions and 0 deletions

12
hooks/bump.sh Normal file
View File

@ -0,0 +1,12 @@
file=version
if [ "$(git diff HEAD version | wc -w)" -eq 0 ]
then
echo 'updating minor version'
new_path=$(cat $file | awk -F . '{print $1"."$2"."$3+1 }')
echo $new_path > $file
git add version
else
echo 'Version have been updated manually'
fi
echo Version: $(cat $file)

1
hooks/pre-commit Normal file
View File

@ -0,0 +1 @@
sh hooks/bump.sh