-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·21 lines (16 loc) · 1.01 KB
/
Copy pathtest.sh
File metadata and controls
executable file
·21 lines (16 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
set -e
FONT_NAME=AppleColorEmoji
touch .test
trap 'rm -f .test' EXIT
cd blobmoji && uv run python blobmoji.py ../apple/${FONT_NAME}_00.ttf Blobmoji.ttf Blobmoji.G_S_U_B_.ttx && cd ..
cd facebook && uv run python facebook.py ../apple/${FONT_NAME}_00.ttf && cd ..
cd fluentui && uv run python fluentui.py ../apple/${FONT_NAME}_00.ttf Flat && cd ..
cd joypixels && uv run python joypixels.py ../apple/${FONT_NAME}_00.ttf Default && cd ..
cd noto-emoji && uv run python noto-emoji.py ../apple/${FONT_NAME}_00.ttf && cd ..
cd oneui && uv run python oneui.py ../apple/${FONT_NAME}_00.ttf NotoColorEmoji.ttf NotoColorEmoji.G_S_U_B_.ttx && cd ..
cd openmoji && uv run python openmoji.py ../apple/${FONT_NAME}_00.ttf && cd ..
cd tossface && uv run python tossface.py ../apple/${FONT_NAME}_00.ttf TossFaceFontMac.ttf TossFaceFontMac.G_S_U_B_.ttx && cd ..
cd twemoji && uv run python twemoji.py ../apple/${FONT_NAME}_00.ttf && cd ..
cd whatsapp && uv run python whatsapp.py ../apple/${FONT_NAME}_00.ttf && cd ..
rm .test