Create checkThatTemplatesVersionWasChanged.sh

This commit is contained in:
Amit Bergman 2021-08-16 09:32:25 +03:00 коммит произвёл GitHub
Родитель bf4c4c11a6
Коммит f292016bc2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,12 @@
#!/bin/bash
var=$(echo $(git diff origin/main -U0))
if [[ "$var" == *"version"* ]];
then
echo "Changed the version of the template, nice!"
exit 0
else
echo "Hey there, you did not change the version of the template, please update the version of the template you changed."
exit 1
fi