Should write a meaningful config.gypi for node.

Node is parsing it for 'process.config', empty file would cause
exception.
This commit is contained in:
Cheng Zhao 2013-07-02 22:23:13 +08:00
parent 40e06db3a8
commit 9c9d62c3a9
2 changed files with 2 additions and 1 deletions

View file

@ -73,6 +73,7 @@ def touch_config_gypi():
if not os.path.exists(config_gypi):
with open(config_gypi, 'w+') as f:
f.truncate(0)
f.write('{}')
def update_atom_shell():