From 3bbcc1efd8c2d499c9ec6d8ed2093c48fdee61e7 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 3 Feb 2015 15:56:58 -0800 Subject: [PATCH] compile-coffee.py should be put under tools/ --- atom.gyp | 6 +++--- {script => tools}/compile-coffee.py | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename {script => tools}/compile-coffee.py (100%) diff --git a/atom.gyp b/atom.gyp index 87188a7049ce..51b9b2edf7d0 100644 --- a/atom.gyp +++ b/atom.gyp @@ -622,7 +622,7 @@ 'rule_name': 'coffee', 'extension': 'coffee', 'inputs': [ - 'script/compile-coffee.py', + 'tools/compile-coffee.py', ], 'conditions': [ ['OS=="mac"', { @@ -631,7 +631,7 @@ ], 'action': [ 'python', - 'script/compile-coffee.py', + 'tools/compile-coffee.py', '<(RULE_INPUT_PATH)', '<(PRODUCT_DIR)/<(product_name).app/Contents/Resources/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js', ], @@ -641,7 +641,7 @@ ], 'action': [ 'python', - 'script/compile-coffee.py', + 'tools/compile-coffee.py', '<(RULE_INPUT_PATH)', '<(PRODUCT_DIR)/resources/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).js', ], diff --git a/script/compile-coffee.py b/tools/compile-coffee.py similarity index 100% rename from script/compile-coffee.py rename to tools/compile-coffee.py