1
0
2023-06-05 15:26:53 +03: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