зеркало из https://github.com/electron/electron.git
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:
Родитель
84b8442ef8
Коммит
dc1655979e
|
@ -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():
|
||||||
|
|
Загрузка…
Ссылка в новой задаче