You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In configure.rb, the regex is matching the filename part of the path on (\w+.log). \w does not match on dash (and many other valid filename characters). My workaround is to rename my files with _.
Not sure the script needs to be fixed. Maybe just update the README in custom-le to indicate that? Unless the log file is being written by some 3 party code and it's hard to change. But that seems unlikely.
The text was updated successfully, but these errors were encountered:
In configure.rb, the regex is matching the filename part of the path on (\w+.log). \w does not match on dash (and many other valid filename characters). My workaround is to rename my files with _.
Not sure the script needs to be fixed. Maybe just update the README in custom-le to indicate that? Unless the log file is being written by some 3 party code and it's hard to change. But that seems unlikely.
The text was updated successfully, but these errors were encountered: