Only create config.gypi if it doesn't exist.

Otherwise every call of bootstrap would trigger recompilation of some
files.
This commit is contained in:
Cheng Zhao 2013-07-02 09:31:43 +08:00
Родитель 84b8442ef8
Коммит dc1655979e
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -70,8 +70,9 @@ def update_win32_python():
def touch_config_gypi(): def touch_config_gypi():
config_gypi = os.path.join(SOURCE_ROOT, 'vendor', 'node', 'config.gypi') config_gypi = os.path.join(SOURCE_ROOT, 'vendor', 'node', 'config.gypi')
with open(config_gypi, 'w+') as f: if not os.path.exists(config_gypi):
f.truncate(0) with open(config_gypi, 'w+') as f:
f.truncate(0)
def update_atom_shell(): def update_atom_shell():