Skip to content

Commit

Permalink
ci-test
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Mar 14, 2024
1 parent 9528aad commit 1287682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/strip-font-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
echo "Processing $font..."
cat "$font" | \
grep -v "^ *_typelessdata: " | \
perl -ne '$l = $_; if (defined($s) && !/^$s[ -]/) { print "# clear\n"; $s = undefined; } if (/^([ \t]+)(m_GlyphTable:|m_FreeGlyphRects:|m_CharacterTable:)/) { $s = $1; print "$1$2 []\n" }; print $l if !defined($s);' \
perl -ne '$l = $_; if (defined($s) && !/^$s[ -]/) { undef $s; } if (/^([ \t]+)(m_GlyphTable:|m_FreeGlyphRects:|m_CharacterTable:)/) { $s = $1; print "$1$2 []\n" }; print $l if !defined($s);' \
"$font" > "$font.tmp"
mv "$font.tmp" "$font" -fv
done
Expand Down

0 comments on commit 1287682

Please sign in to comment.