MeAmAnUsername / pie

Pipelines for Interactive Environments
Apache License 2.0
0 stars 0 forks source link

Incorrect documentation for path filters #264

Open MeAmAnUsername opened 2 years ago

MeAmAnUsername commented 2 years ago

pattern and patterns use ant patterns to match. That means they do full matches only, ? is any single character, * is multiple characters (but not directories), ** is any number of directories. Example: results/**/*.csv

Regex does a full match only, so foo will not match foobar, you need to use foo.+