Commit ec84e75d by Timothée Peignier

Merge branch 'master' of github.com:cyberdelia/django-pipeline

parents ae1dacd8 e5d097c1
...@@ -11,7 +11,7 @@ class CoffeeScriptCompiler(SubProcessCompiler): ...@@ -11,7 +11,7 @@ class CoffeeScriptCompiler(SubProcessCompiler):
def compile_file(self, infile, outfile, outdated=False, force=False): def compile_file(self, infile, outfile, outdated=False, force=False):
if not outdated and not force: if not outdated and not force:
return # File doesn't need to be recompiled return # File doesn't need to be recompiled
command = "%s -c %s %s > %s" % ( command = "%s -cp %s %s > %s" % (
settings.PIPELINE_COFFEE_SCRIPT_BINARY, settings.PIPELINE_COFFEE_SCRIPT_BINARY,
settings.PIPELINE_COFFEE_SCRIPT_ARGUMENTS, settings.PIPELINE_COFFEE_SCRIPT_ARGUMENTS,
infile, infile,
......
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