From: Jeff Halter Date: Sun, 26 Jun 2022 15:47:34 +0000 (-0700) Subject: Fix example IgnoreFiles filter X-Git-Url: https://git.r.bdr.sh/rbdr/mobius/commitdiff_plain/74b63fe934aadc5577c8232bf8aaee5a0503f5b7 Fix example IgnoreFiles filter '^\.*' works on macOS but is ignoring all files on Linux. --- 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 "@"