Files
carbon-lang/scripts/run_bazel.py
T
Jon Meow 770555d8c9 Update check_deps, make reusing scripts easier (#1187)
I went down this route because I figured the installer binary should be in `check_deps`. The result:

- Add thin wrapper scripts for `buildozer` and `bazel`, similar to the `buildifier` wrapper that's already there.
  - These are mainly to avoid deduplicating logic, and dodging intricacies of Python imports that I don't understand well through instead subprocessing.
- Fix update_roots.py (it was missing a `.parent`, must've been relocated without a re-run at some point)
- Fix fuzzer proto code to be `testonly`
- Update the `check_deps` targets
2022-04-14 19:48:51 -07:00

28 lines
564 B
Python
Executable File

#!/usr/bin/env python3
"""Runs bazel on arguments.
This is provided for other scripts to run bazel without requiring it be
manually installed.
"""
__copyright__ = """
Part of the Carbon Language project, under the Apache License v2.0 with LLVM
Exceptions. See /LICENSE for license information.
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
"""
import os
import sys
import scripts_utils # type: ignore
def main() -> None:
bazel = scripts_utils.locate_bazel()
os.execv(bazel, [bazel] + sys.argv[1:])
if __name__ == "__main__":
main()