Re: `collectstatic --ignore` pattern matching

2015-09-18 Thread Shimul Taleb
Django use this `get_fiels` function to get all files, folders name list https://github.com/django/django/blob/master/django/contrib/staticfiles/utils.py#L21 So it does not have any knowledge about path. On Monday, January 27, 2014 at 5:54:29 PM UTC-5, Eric Eldredge wrote: > > Hi all, > > I'm

`collectstatic --ignore` pattern matching

2014-01-27 Thread Eric Eldredge
Hi all, I'm working on a project where I want to ignore certain files when running collectstatic. I am having success only when i use 'basename' patterns, such as *.exe or vendor, but not when trying to match file paths, such as vendor/*.exe. It seems the reason i'm not seeing the behavior i e