Commit e5d097c1 by Timothée Peignier

Merge pull request #141 from dontcare4free/master

Add -p argument to the CoffeeScript compiler
parents 07ba8d66 3b858712
......@@ -11,7 +11,7 @@ class CoffeeScriptCompiler(SubProcessCompiler):
def compile_file(self, infile, outfile, outdated=False, force=False):
if not outdated and not force:
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_ARGUMENTS,
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