User tests: Successful: Unsuccessful:
Pull Request for New Issue.
The new replace of bump.php uses a not so correct pattern match [^<]*. It should be [^ ]*, since where we want to end the pattern match (for replace) is a space character and not the less sign (<).
In joomla root dir, run CLI command php build/bump.php -v 3.7.0
And then check the /build.xml for Joomla! CMS 3.7 API
Then use php build/bump.php -v 3.6.0-dev to go back to previous state.
| Status | New | ⇒ | Pending |
| Labels |
Added:
?
|
||
ehhe
the regex is currently working because you have no less (<) character in that line.
But is not correct. This PR corrects it.
BTW. The travis error is nothing to do with this PR.
Can be merged on review IMHO.
| Status | Pending | ⇒ | Fixed in Code Base |
| Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-05-07 17:42:02 |
| Closed_By | ⇒ | wilsonge |
| Category | ⇒ | CLI |
| Milestone |
Added: |
||
Regex ain't my thing so if it works it works.