Skip to content

Commit

Permalink
Ignore filename diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
rsheeter committed Dec 14, 2023
1 parent 852e25c commit fee5715
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,10 @@ jobs:
cp build/font.ttf ./second-italic.ttf
- name: ttx, it might be handy to troubleshoot
# tail -n +2 to skip past the first line because it emits the filename
run: |
diff -u <(pipx run fonttools ttx -l first-roman.ttf) <(pipx run fonttools ttx -l second-roman.ttf)
diff -u <(pipx run fonttools ttx -l first-italic.ttf) <(pipx run fonttools ttx -l second-italic.ttf)
diff -u <(pipx run fonttools ttx -l first-roman.ttf | tail -n +2) <(pipx run fonttools ttx -l second-roman.ttf | tail -n +2)
diff -u <(pipx run fonttools ttx -l first-italic.ttf | tail -n +2) <(pipx run fonttools ttx -l second-italic.ttf | tail -n +2)
- name: Stable Roman?
run: cmp first-roman.ttf second-roman.ttf
Expand Down

0 comments on commit fee5715

Please sign in to comment.