79692372

Date: 2025-07-07 06:12:04
Score: 1.5
Natty:
Report link

The mistake is [.]+ in your expected_regex. It expects a set of dots not any character.

Try use

local expected_regex="^[a-zA-Z0-9]{40}[\t\ ]+refs/tags/[^/]+$"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergey Belenkov