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 7024d37 commit 5f4941e
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 '$s = undefined if ($s && /^$s[a-z]/); $s = $1 if /^( +)(m_GlyphTable:|m_FreeGlyphRects:|m_CharacterTable:)/; print if not $s;' \
perl -ne '$s = undefined if ($s && /^$s[a-z]/); if /^( +)(m_GlyphTable:|m_FreeGlyphRects:|m_CharacterTable:)/ { $s = $1; print "$1$2 []\n" }; print if not $s;' \
"$font" > "$font.tmp"
mv "$font.tmp" "$font" -fv
done
Expand Down

0 comments on commit 5f4941e

Please sign in to comment.