Commit 7bf68907 by Will Daly

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

Add ignore patterns for staticfiles to avoid processing symlink dirs
parents a00335ed 4c842409
......@@ -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'
......
......@@ -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'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment