Fix calling compile-coffee under cygwin.
This commit is contained in:
parent
384e83972f
commit
ec5fc10bd9
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ def main():
|
||||||
output_dir = os.path.dirname(sys.argv[2])
|
output_dir = os.path.dirname(sys.argv[2])
|
||||||
|
|
||||||
node = get_node_path()
|
node = get_node_path()
|
||||||
coffee = os.path.join(SOURCE_ROOT, 'node_modules', '.bin', 'coffee')
|
coffee = os.path.join(SOURCE_ROOT, 'node_modules', 'coffee-script', 'bin',
|
||||||
|
'coffee')
|
||||||
subprocess.check_call([node, coffee, '-c', '-o', output_dir, input_file])
|
subprocess.check_call([node, coffee, '-c', '-o', output_dir, input_file])
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue