diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2022-06-26 08:47:34 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-26 08:47:34 -0700 |
| commit | 74b63fe934aadc5577c8232bf8aaee5a0503f5b7 (patch) | |
| tree | d449644f7b51c3f35c769daad28985a172971949 /cmd/mobius-hotline-server | |
| parent | 52f2aea827bed9c6d26a72072b16857bdc6f7743 (diff) | |
Fix example IgnoreFiles filter
'^\.*' works on macOS but is ignoring all files on Linux.
Diffstat (limited to 'cmd/mobius-hotline-server')
| -rw-r--r-- | cmd/mobius-hotline-server/mobius/config/config.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mobius-hotline-server/mobius/config/config.yaml b/cmd/mobius-hotline-server/mobius/config/config.yaml index 3ca8121..87e500d 100644 --- a/cmd/mobius-hotline-server/mobius/config/config.yaml +++ b/cmd/mobius-hotline-server/mobius/config/config.yaml @@ -45,5 +45,5 @@ MaxConnectionsPerIP: 0 # List of Regular Expression filters for the Files list IgnoreFiles: - - '^\.*' # Ignore all files starting with ".". Leave this set if you are using the PreserveResourceForks option. - - '^@' # Ignore all files starting with "@"
\ No newline at end of file + - '^\.' # Ignore all files starting with ".". Leave this set if you are using the PreserveResourceForks option. + - '^@' # Ignore all files starting with "@" |