iamayushdas opened a new issue #1695:
URL: https://github.com/apache/apisix-dashboard/issues/1695
## Issue description
unable to verify version number
## Expected behavior
`2.4` version should get verified
This is because when verifying the version number, the `.` In `2.4` is
used as a regular expression to match all strings.
You could submit another commit to avoid this problem.
To fix this problem, we could change this line of code
https://github.com/apache/apisix-dashboard/blob/master/api/test/shell/cli_test.sh#L177
to :
```shell
if [[ `grep -c -w "${VERSION}" ${STDOUT}` -ne '1' ]]; then
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]