From f6afb23d56669f87e467dc61588b4af1950d06b0 Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Tue, 30 Jan 2024 13:57:22 +0100 Subject: [PATCH] docs(server): Fix glob pattern in library exclusions (#6752) fix glob pattern in library exclusions --- docs/docs/features/libraries.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/features/libraries.md b/docs/docs/features/libraries.md index 237d733596cad..6f14c456dde60 100644 --- a/docs/docs/features/libraries.md +++ b/docs/docs/features/libraries.md @@ -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