1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 22:51:59 +00:00

docs(server): Fix glob pattern in library exclusions (#6752)

fix glob pattern in library exclusions
This commit is contained in:
Jonathan Jogenfors 2024-01-30 13:57:22 +01:00 committed by GitHub
parent 64da2c1698
commit f6afb23d56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,10 +78,10 @@ By default, all files in the import paths will be added to the library. If there
Some basic examples:
- `*.tif` will exclude all files with the extension `.tif`
- `hidden.jpg` will exclude all files named `hidden.jpg`
- `**/*.tif` will exclude all files with the extension `.tif`
- `**/hidden.jpg` will exclude all files named `hidden.jpg`
- `**/Raw/**` will exclude all files in any directory named `Raw`
- `*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg`
- `**/*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg`
### Nightly job