From 37b39a2d6b685f48774946ba0ddd76040b7cc008 Mon Sep 17 00:00:00 2001
From: Rich Trott <rtrott@gmail.com>
Date: Tue, 22 Dec 2020 09:02:56 -0800
Subject: [PATCH] tools: call close() explicitly in genv8constants.py

PR-URL: https://github.com/nodejs/node/pull/36606
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
---
 tools/genv8constants.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/genv8constants.py b/tools/genv8constants.py
index cb648d39ce7a18..64370ad29611c0 100755
--- a/tools/genv8constants.py
+++ b/tools/genv8constants.py
@@ -113,3 +113,5 @@ def out_define():
 
 #endif /* V8_CONSTANTS_H */
 """)
+
+outfile.close()