Skip to content

Commit

Permalink
Merge pull request #1009 from googlefonts/fix-push
Browse files Browse the repository at this point in the history
push: ignore Roboto_old family
  • Loading branch information
m4rc1e authored Aug 1, 2024
2 parents cba6fd5 + 517b04d commit b1aa951
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lib/gftools/push/servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ def update_all(self, last_checked: str):
families_data = meta["familyMetadataList"]
for family_data in families_data:
family_name = family_data["family"]
# I beleive this is a test family so we'll skip it for now
if family_name == "Roboto_old":
continue
last_modified = family_data["lastModified"]

cached_family_version = self.family_versions.get(family_name)
Expand Down

0 comments on commit b1aa951

Please sign in to comment.