hashicorp / packer-plugin-vagrant

Packer plugin for Vagrant
https://packer.io
Mozilla Public License 2.0
13 stars 24 forks source link

parallels: simplify regex for vm files #108

Closed lbajolet-hashicorp closed 5 months ago

lbajolet-hashicorp commented 5 months ago

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.