Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb5493cb authored by Cole Faust's avatar Cole Faust
Browse files

Don't change timestamps in update_font_metadata

This causes non-reproducable builds.

Bug: 307824623
Test: ./build/soong/tests/genrule_sandbox_test.py UpdatableSystemFontTest_NotoColorEmojiV0.ttf
Change-Id: I2f055740f44153a85fad6040d825c2e80bf2e77d
parent b6ee472c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ def main():
    args_parser.add_argument('--revision', help='Updated font revision. Use + to update revision based on the current revision')
    args = args_parser.parse_args()

    font = ttLib.TTFont(args.input)
    font = ttLib.TTFont(args.input, recalcTimestamp=False)
    update_font_revision(font, args.revision)
    font.save(args.output)