1
0
Maksym H 70df6b60c2 Apple: switch to MultiCraft Font
(cherry picked from commit 58f63ae4a77ff691555f3397263b9d908b6d4456)
2023-08-10 22:45:04 -04:00

20 lines
276 B
Bash
Executable File

#!/bin/bash -e
ALL_FONTS=false
if [ ! -d MultiCraft/MultiCraft.xcodeproj ]; then
echo "Run this from Apple folder"
exit 1
fi
DEST=$(pwd)/assets
mkdir -p $DEST/fonts
if $ALL_FONTS
then
cp ../fonts/*.ttf $DEST/fonts/
else
cp ../fonts/MultiCraftFont.ttf $DEST/fonts/
fi