morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits: 4082f692 by Pier Angelo Vendrame at 2025-04-15T16:28:45+02:00 Bug 41434: Exclude macOS as a platform from Go updates.
- - - - -
1 changed file:
- tools/fetch_changelogs.py
Changes:
===================================== tools/fetch_changelogs.py ===================================== @@ -86,6 +86,9 @@ class UpdateEntry(ChangelogEntry): elif name == "GeckoView" or name == "Zstandard": platform = Platform.ANDROID num_platforms = 1 + elif name == "Go": + platform = Platform.ALL_PLATFORMS ^ Platform.MACOS + num_platforms = 1 else: platform = Platform.ALL_PLATFORMS num_platforms = 4
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/40...