mkxp-sunshine/patches/mac/CreateBundle.sh
2026-04-14 21:34:06 +02:00

17 lines
328 B
Bash

#!/bin/sh
OSX_App="synglechance.app"
ContentsDir="$OSX_App/Contents"
LibrariesDir="$OSX_App/Contents/Libraries"
ResourcesDir="$OSX_App/Contents/Resources"
# create directories in the @target@.app bundle
if [ ! -e $LibrariesDir ]
then
mkdir -p "$LibrariesDir"
fi
if [ ! -e $ResourcesDir ]
then
mkdir -p "$ResourcesDir"
fi