mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
17 lines
328 B
Bash
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
|