mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
Add revert instructions to .bat and bash files which are the entry points to various infra tools deployed via CIPD. Bug: 1206818 Change-Id: Ib0045aea86f29d0f7e3a43c6ff314c4b7aa74171 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2892387 Auto-Submit: Nodir Turakulov <nodir@chromium.org> Reviewed-by: Vadim Shtayura <vadimsh@chromium.org> Reviewed-by: Dirk Pranke <dpranke@google.com> Reviewed-by: Bruce Dawson <brucedawson@chromium.org> Commit-Queue: Dirk Pranke <dpranke@google.com>
15 lines
369 B
Bash
Executable File
15 lines
369 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2017 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# See revert instructions in cipd_manifest.txt
|
|
|
|
MYPATH=$(dirname "${BASH_SOURCE[0]}")
|
|
|
|
source "$MYPATH/cipd_bin_setup.sh"
|
|
cipd_bin_setup &> /dev/null
|
|
|
|
exec "$MYPATH/.cipd_bin/led" "$@"
|