From ec5fc10bd9d79612e6649855dc4d3afa44d6a2c8 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 1 Jul 2013 18:04:15 +0800 Subject: [PATCH] Fix calling compile-coffee under cygwin. --- script/compile-coffee.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/compile-coffee.py b/script/compile-coffee.py index 35642c90e544..24e7dcfd9b8e 100755 --- a/script/compile-coffee.py +++ b/script/compile-coffee.py @@ -15,7 +15,8 @@ def main(): output_dir = os.path.dirname(sys.argv[2]) 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])