calculate_release_shas.py 415 B

12345678910111213141516171819
  1. #!/usr/bin/env python3
  2. """Prints sha information for tracked tool releases."""
  3. __copyright__ = """
  4. Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  5. Exceptions. See /LICENSE for license information.
  6. SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. """
  8. import scripts_utils
  9. def main() -> None:
  10. scripts_utils.calculate_release_shas()
  11. if __name__ == "__main__":
  12. main()