blob: 9e66e97a37aeb1b3d9d8b83027afa8bc59850ebb [file]
#!/usr/bin/env python3
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import subprocess
import sys
vpython='vpython3'
if sys.platform == 'win32':
vpython += '.bat'
subprocess.run([
vpython,
os.path.join(os.path.dirname(__file__), 'regenerate_internal_cts_html.py')
] + sys.argv[1:],
check=True)