Commit 3b858712 by Nullable

Add -p argument to CoffeeScript compiler

parent 07ba8d66
......@@ -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