2022-12-02 11:40:55 +01:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
2023-06-05 15:26:53 +03:00
|
|
|
ALL_FONTS=false
|
2022-12-02 11:40:55 +01:00
|
|
|
|
|
|
|
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
|