Skip to content

Commit

Permalink
refactor xs
Browse files Browse the repository at this point in the history
  • Loading branch information
molarmanful committed Jan 2, 2025
1 parent 5a46be7 commit c2833a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: addnab/docker-run-action@v3
with:
image: builder
options: -e NERD=1
options: -e NERD=1 -e XS=2,3
- uses: shrink/actions-docker-extract@v3
id: extract
with:
Expand Down
3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ if [ "$NERD" != "" ]; then
fi

if command -v bdfresize &>/dev/null; then
for n in 2 3; do
IFS=',' read -r -a xs <<<"$XS"
for n in "${xs[@]}"; do
name=kirsch${n}x
bdfresize -f "$n" out/kirsch.bdf >out/"$name".bdf
ff "$name"
Expand Down

0 comments on commit c2833a0

Please sign in to comment.