mkxp-sunshine/patches/mac/CreateBundle.sh
2017-10-11 23:30:03 -07:00

17 lines
328 B
Bash
Executable file

#!/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