]> git.r.bdr.sh - rbdr/mobius/commitdiff
Fix example IgnoreFiles filter
authorJeff Halter <redacted>
Sun, 26 Jun 2022 15:47:34 +0000 (08:47 -0700)
committerGitHub <redacted>
Sun, 26 Jun 2022 15:47:34 +0000 (08:47 -0700)
'^\.*' works on macOS but is ignoring all files on Linux.

cmd/mobius-hotline-server/mobius/config/config.yaml

index 3ca812162578099a1e38251c2480c534428b3249..87e500d4b8eab665c8d43791980ec00963ffe607 100644 (file)
@@ -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 "@"