Update checkThatTemplatesVersionWasChanged.sh

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

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

@ -8,7 +8,7 @@ for file in $filesThatWereChanged
#And making sure that in every file that its filename contains the word "Detection", the version was updated
do
echo processing the file $file.
if [[ "$file" == *"Detection"* ]];
if [[ "$file" == *"Detections"* ]];
then
echo $file is a detection
diffs=$(echo $(git diff origin/master -U0 $file))