blob: 136fa2155d28b13f6bb0c417095098abc31eddc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- third_party/node/check_version.py.orig 2025-06-30 07:04:30 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:
|