mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
Bug: 759146 Change-Id: I19edd0b525044655bb9a38b7ada0be9064457f38 Reviewed-on: https://chromium-review.googlesource.com/636446 Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org> Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
9 lines
298 B
Bash
Executable File
9 lines
298 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 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.
|
|
|
|
base_dir=$(dirname "$0")
|
|
|
|
PYTHONDONTWRITEBYTECODE=1 exec python -u "$base_dir/compile_single_file.py" "$@"
|