Skip to content

Commit b627ee1

Browse files
authored
Merge pull request #7855 from kenjis/fix-validate-version
chore: fix validate-version
2 parents f5a7358 + 608c4d2 commit b627ee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/validate-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FILES=("system/CodeIgniter.php" "user_guide_src/source/conf.py")
1010
LENGTH="${#FILES[@]}"
1111

1212
for FILE in "${FILES[@]}"; do
13-
COUNT="$((COUNT + $(grep -c "$FILE" -e "$1")))"
13+
COUNT="$((COUNT + $(grep -c "$FILE" -e "'$1'")))"
1414
done
1515

1616
if [[ $COUNT -ne $LENGTH ]]; then

0 commit comments

Comments
 (0)