Skip to content

Commit

Permalink
Merge pull request #7855 from kenjis/fix-validate-version
Browse files Browse the repository at this point in the history
chore: fix validate-version
  • Loading branch information
kenjis authored Aug 25, 2023
2 parents f5a7358 + 608c4d2 commit b627ee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/validate-version
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FILES=("system/CodeIgniter.php" "user_guide_src/source/conf.py")
LENGTH="${#FILES[@]}"

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

if [[ $COUNT -ne $LENGTH ]]; then
Expand Down

0 comments on commit b627ee1

Please sign in to comment.