TriBITSPub / TriBITS

TriBITS: Tribal Build, Integrate, and Test System,
http://tribits.org
Other
36 stars 47 forks source link

Replace regex used for handling multiple '/' from find_find() (#411) #567

Closed bartlettroscoe closed 1 year ago

bartlettroscoe commented 1 year ago

This replaces '[/]*/' which will match one or more '/' chars in a row with '/?/' which will match one or two '/' in a row (which is what I wanted).

This addresses review feedback from @KyleFromKitware in PR #565.