From 3533be2f9f5b7755afb6594c766e5127ebfca31c Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 3 Jul 2015 21:41:27 +0800 Subject: [PATCH] Fist line of config.gypi should be empty --- script/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap.py b/script/bootstrap.py index fa4ac87fa0b..afd885219a4 100755 --- a/script/bootstrap.py +++ b/script/bootstrap.py @@ -174,7 +174,7 @@ def create_chrome_version_h(): def touch_config_gypi(): config_gypi = os.path.join(SOURCE_ROOT, 'vendor', 'node', 'config.gypi') with open(config_gypi, 'w+') as f: - content = "{\n 'variables': {\n 'openssl_fips': ''\n }\n}" + content = "\n{\n 'variables': {\n 'openssl_fips': ''\n }\n}" if f.read() != content: f.write(content)