Skip to content

Commit e21b9bc

Browse files
committed
CI: Fix debug information
[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]>
1 parent aa65b7e commit e21b9bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
zip delugia-book.zip delugia-book/*
164164
- name: Check for preexisting glyphs
165165
run: |
166-
grep 'Found existing' process*.log | grep -vE ' Powerline(Extra)?Symbols>'
166+
grep 'Skipping...' process*.log | grep -vE ' Powerline(Extra)?Symbols>'
167167
- uses: actions/upload-artifact@v4
168168
with:
169169
name: Delugia Powerline

do_generate

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222
PWD=$( pwd )
2323

2424
rm -f C*.ttf
25-
fontforge -script "${PWD}/font-patcher" --careful "${3}" --custom SomeExtraSymbols.sfd --no-progressbars "${PWD}/ttf/static/${4}" "${2}" --outputdir "${PWD}" | tee "process${1}.log"
25+
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"
2626

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

0 commit comments

Comments
 (0)