Commit 11e10499 by Christine Lytwynec

Merge pull request #8557 from edx/clytwynec/quiet_sass_compile_warnings

compile sass in quiet mode unless debug=True
parents 176a70de a1af17e4
......@@ -143,7 +143,7 @@ def compile_sass(debug=False):
if debug:
parts.append("--sourcemap")
else:
parts.append("--style compressed")
parts.append("--style compressed --quiet")
for load_path in SASS_LOAD_PATHS + SASS_DIRS.keys():
parts.append("--load-path {path}".format(path=load_path))
......
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