CauldronDevelopmentLLC / cbang

C! (cbang) is a library for cross-platform C++ development.
GNU Lesser General Public License v2.1
56 stars 39 forks source link

Fix SystemUtilities::rotate max files pattern #112

Closed kbernhagen closed 1 year ago

kbernhagen commented 1 year ago

Because ext now includes a dot, the RE had \.\., which failed to find any files to remove.

Pattern was log-[0-9]{8}-[0-9]{6}\.\.txt

This broke both log-rotate-max and config rotate max.

jcoffland commented 1 year ago

Thanks!