mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
This is to fix https://ci.chromium.org/ui/p/chromium/builders/ci/Win%20x64%20Builder%20(py2%20less)/1151/overview Bug: 1327534 Change-Id: I3dcead03d0f4e213e1c4e610d8b90fe95ea843d0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3670999 Commit-Queue: Josip Sokcevic <sokcevic@google.com> Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Josip Sokcevic <sokcevic@google.com>
13 lines
436 B
Batchfile
Executable File
13 lines
436 B
Batchfile
Executable File
@echo off
|
|
:: Copyright (c) 2012 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.
|
|
setlocal
|
|
|
|
:: Ensure that "depot_tools" is somewhere in PATH so this tool can be used
|
|
:: standalone, but allow other PATH manipulations to take priority.
|
|
set PATH=%PATH%;%~dp0
|
|
|
|
:: Defer control.
|
|
python3 "%~dp0\download_from_google_storage.py" %*
|