24
0
Fork 0

correct check of version

This commit is contained in:
tykayn 2020-11-26 17:43:11 +01:00 committed by root
parent 962747e932
commit 88ae1876c3
2 changed files with 2 additions and 2 deletions

View File

4
monitoring/check_version.sh Normal file → Executable file
View File

@ -26,8 +26,8 @@ else
lastVersion=$(curl -s https://framagit.org/api/v4/projects/$FRAMAGIT_PROJECT_ID/releases | jshon -a -e name|cut -d '"' -f2|grep -v '[\^\(alpha\)]'|head -n 1)
currentVersion=$(cd $LOCAL_REPO && git branch | grep '*'|cut -c 3-100 )
echo "current version: $currentVersion"
echo "last version: $lastVersion"
#echo "current version: $currentVersion"
#echo "last version: $lastVersion"
if [ $currentVersion = $lastVersion ]; then
echo "OK"
result=0