From 74b63fe934aadc5577c8232bf8aaee5a0503f5b7 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sun, 26 Jun 2022 08:47:34 -0700 Subject: Fix example IgnoreFiles filter '^\.*' works on macOS but is ignoring all files on Linux. --- cmd/mobius-hotline-server/mobius/config/config.yaml | 4 ++-- 1 file 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 "@" -- cgit