#!/usr/bin/env python3 # Copyright 2023 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file.
import argparse import pathlib import re import subprocess
def main():
parser = argparse.ArgumentParser() # Hide args set by wrappers so that using --help with the wrappers does not # show them.
parser.add_argument('--subdir', required=True, help=argparse.SUPPRESS)
parser.add_argument('--cipd-package',
required=True,
help=argparse.SUPPRESS)
parser.add_argument('--git-log-url', help=argparse.SUPPRESS)
parser.add_argument('--cipd-instance',
help='Uses value from DEPS by default')
args = parser.parse_args()
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.