Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
parallels: simplify regex for vm files
The original regex had multiple occurrences of a `.+?' pattern, which is essentially the same as a `.*', so we replace the former by the latter for clarity. Additionally, since the beginning of the path does not interest us, we can ignore it from the regex, and only start matching once we have found what's interesting for us, further simplifying the expression.
- Loading branch information