kou commented on code in PR #1920:
URL: https://github.com/apache/arrow-adbc/pull/1920#discussion_r1640553318
##########
ci/scripts/website_build.sh:
##########
@@ -46,14 +46,17 @@ main() {
exit 1
fi
- local -r regex='^([0-9]+\.[0-9]+\.[0-9]+)$'
+ # Docs use the ADBC release so it will just be 12, 13, 14, ...
+ local -r regex='^([0-9]+?)$'
Review Comment:
It seems that we can simplify this.
```suggestion
local -r regex='^[0-9]+$'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]