mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 02:31:29 +00:00
So that it allows depot tools has the ability to write the cipd pkgs outside of the repo. windows support will be added in a follow-up change. Bug: 355430412 Change-Id: I7fabed7ecac8216ba3f3f639217d9e36746241f9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5742434 Reviewed-by: Gregory Guterman <guterman@google.com> Commit-Queue: Yiwei Zhang <yiwzhang@google.com> Reviewed-by: Josip Sokcevic <sokcevic@chromium.org>
15 lines
376 B
Bash
Executable File
15 lines
376 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2018 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_ROOT=$(cipd_bin_setup) &> /dev/null
|
|
|
|
exec "$CIPD_ROOT/prpc" "$@"
|