Merge pull request #1935 from edx/will/ignore-symlink-staticfiles

Add ignore patterns for staticfiles to avoid processing symlink dirs
This commit is contained in:
Will Daly
2013-12-16 09:01:17 -08:00
2 changed files with 8 additions and 0 deletions

View File

@@ -315,6 +315,10 @@ STATICFILES_IGNORE_PATTERNS = (
"coffee/*/*.coffee",
"coffee/*/*/*.coffee",
"coffee/*/*/*/*.coffee",
# Symlinks used by js-test-tool
"xmodule_js",
"common_static",
)
PIPELINE_YUI_BINARY = 'yui-compressor'

View File

@@ -819,6 +819,10 @@ PIPELINE_JS_COMPRESSOR = None
STATICFILES_IGNORE_PATTERNS = (
"sass/*",
"coffee/*",
# Symlinks used by js-test-tool
"xmodule_js",
"common_static",
)
PIPELINE_YUI_BINARY = 'yui-compressor'