From 0dc0052e935bc2d2233acc10f063c5595f135be6 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 19 Mar 2016 17:40:54 +0000 Subject: [PATCH] Note that filters must use / not \ - #394 --- docs/content/filtering.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/content/filtering.md b/docs/content/filtering.md index b0ae9923f..ccd099f0b 100644 --- a/docs/content/filtering.md +++ b/docs/content/filtering.md @@ -37,6 +37,9 @@ If it doesn't start with `/` then it is matched starting at the - doesn't match "afile.jpg" - doesn't match "directory/file.jpg" +**Important** Note that you must use `/` in patterns and not `\` even +if running on Windows. + A `*` matches anything but not a `/`. *.jpg - matches "file.jpg"