blob: 33076fe6b3c290fc7a0123e9e35bb6ee0ffc94da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- third_party/node/check_version.py.orig 2025-07-02 06:08:04 UTC
+++ third_party/node/check_version.py
@@ -17,11 +17,6 @@ def main(argv):
parser.add_argument('--out_file', required=True)
args = parser.parse_args(argv)
- node.RunNode([
- os.path.join(_HERE_PATH, 'check_version.js'),
- '--expected_version_file', args.expected_version_file,
- ])
-
# If the above script succeeded, write a dummy output file, since Ninja
# requires every target to have an output.
with open(args.out_file, "w") as file:
|