Files
carbon-lang/scripts/calculate_release_shas.py
T
Jon Ross-Perkins bb8417c810 Refactor tool fetching for easier updates. (#4127)
Adds scripts/calculate_release_shas.py to print the versions, and
updates tool versions. Consolidates target-determinator logic with the
other tool logic.

This is also intended to make it easier to add more tools.
2024-07-12 22:32:49 +00:00

20 lines
415 B
Python
Executable File

#!/usr/bin/env python3
"""Prints sha information for tracked tool releases."""
__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 scripts_utils
def main() -> None:
scripts_utils.calculate_release_shas()
if __name__ == "__main__":
main()