Commit f3a86fc
Fix version extraction regex to exclude trailing quote
Corrects regex pattern in build-testharness.yml to match the pattern
used in build-authenticator.yml. The previous regex captured the
closing quote as part of the version name, which would result in
malformed version strings.
Before: regex='appVersionName = "([^"]+")' → captures "2025.11.1"
After: regex='appVersionName = "([^"]+)"' → captures "2025.11.1"
Addresses Finding 2 from code review of PR #6181.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 6b77e06 commit f3a86fc
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
| 104 | + | |
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| |||
0 commit comments