From 3bde1bf328670cd4b228c0cbe6ba4af1fa5a04c8 Mon Sep 17 00:00:00 2001 From: bd_ Date: Thu, 14 Mar 2024 18:58:04 +0900 Subject: [PATCH] ci-test --- .github/workflows/strip-font-data.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/strip-font-data.yml b/.github/workflows/strip-font-data.yml index 26b4cab0..25c163d4 100644 --- a/.github/workflows/strip-font-data.yml +++ b/.github/workflows/strip-font-data.yml @@ -23,9 +23,12 @@ jobs: 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;' \ "$font" > "$font.tmp" - mv "$font" "$font.tmp" + mv "$font.tmp" "$font" -fv done + - name: git diff + run: git diff + - name: Check if changes need committing run: | git config --global user.email "ci@nadena.dev"