Fix calling compile-coffee under cygwin.

This commit is contained in:
Cheng Zhao 2013-07-01 18:04:15 +08:00
parent 384e83972f
commit ec5fc10bd9

View file

@ -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])