mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 22:02:33 +01:00
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
28 lines
564 B
Python
Executable File
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()
|