Skip to content

Commit

Permalink
Ignore filename diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
rsheeter authored and anthrotype committed Dec 18, 2023
1 parent a27e12e commit 355511f
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 @@ -217,9 +217,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 355511f

Please sign in to comment.