Skip to content

Commit

Permalink
CI: Fix debug information
Browse files Browse the repository at this point in the history
[why]
The actual message changes with the newest font-patcher and furthermore
the message is suppressed unless specifically run in debug mode.

Signed-off-by: Fini Jastrow <[email protected]>
  • Loading branch information
Finii committed May 2, 2024
1 parent 33ba219 commit 237f782
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
zip delugia-book.zip delugia-book/*
- name: Check for preexisting glyphs
run: |
grep 'Found existing' process*.log | grep -vE ' Powerline(Extra)?Symbols>'
grep 'Skipping...' process*.log | grep -vE ' Powerline(Extra)?Symbols>'
- uses: actions/upload-artifact@v4
with:
name: Delugia Powerline
Expand Down
2 changes: 1 addition & 1 deletion do_generate
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi
PWD=$( pwd )

rm -f C*.ttf
fontforge -script "${PWD}/font-patcher" --careful "${3}" --custom SomeExtraSymbols.sfd --no-progressbars "${PWD}/ttf/static/${4}" "${2}" --outputdir "${PWD}" | tee "process${1}.log"
fontforge -script "${PWD}/font-patcher" --debug 2 --careful "${3}" --custom SomeExtraSymbols.sfd --no-progressbars "${PWD}/ttf/static/${4}" "${2}" --outputdir "${PWD}" | tee "process${1}.log"

if [ -z "${OURVERSION}" ]; then
# Github CI sets this variable, but this can be useful for manual calls:
Expand Down

0 comments on commit 237f782

Please sign in to comment.