mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-10 18:21:28 +00:00
This will replace the user consent logics in ninjalog_uploader_wrapper.py and reclient_metrics.py See also https://crrev.com/c/5669094 for how this will be used. Bug: 345113094 Change-Id: Iffc4975c152ba63f7577c09e5254c499fe8973c0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5671052 Reviewed-by: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Josip Sokcevic <sokcevic@chromium.org> Reviewed-by: Fumitoshi Ukai <ukai@google.com> Auto-Submit: Junji Watanabe <jwata@google.com> Commit-Queue: Josip Sokcevic <sokcevic@chromium.org>
9 lines
262 B
Bash
Executable File
9 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2024 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
base_dir=$(dirname "$0")
|
|
PYTHONDONTWRITEBYTECODE=1 exec python3 "$base_dir/build_telemetry.py" "$@"
|