mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
Bug: 1199969 Change-Id: I5dcc5fc631cc417fd295d753171f3696f1c7ad0d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2837688 Reviewed-by: Linkun Chen <lkchen@chromium.org> Reviewed-by: Josip Sokcevic <sokcevic@google.com> Auto-Submit: Linkun Chen <lkchen@chromium.org> Commit-Queue: Josip Sokcevic <sokcevic@google.com>
9 lines
301 B
Bash
Executable File
9 lines
301 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2009 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.
|
|
|
|
base_dir=$(dirname "$0")
|
|
|
|
PYTHONDONTWRITEBYTECODE=1 exec python3 "$base_dir/download_from_google_storage.py" "$@"
|