mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
22 lines
468 B
Bash
22 lines
468 B
Bash
#!/bin/bash
|
|
|
|
SNAME="$(dirname $0)"
|
|
export SHIP_HOME="$HOME/Library/Application Support/com.2ship2harkinian.2s2h"
|
|
export SNAME
|
|
export RESPATH="${SNAME%/MacOS*}/Resources"
|
|
export LIBPATH="${SNAME%/MacOS*}/Frameworks"
|
|
export DYLD_FALLBACK_LIBRARY_PATH="$LIBPATH"
|
|
|
|
if [ ! -e "$SHIP_HOME" ]; then
|
|
mkdir "$SHIP_HOME";
|
|
fi
|
|
|
|
if [ ! -e "$SHIP_HOME"/mods ]; then
|
|
mkdir -p "$SHIP_HOME"/mods
|
|
touch "$SHIP_HOME"/mods/custom_otr_files_go_here.txt
|
|
fi
|
|
|
|
"$RESPATH"/2s2h-macos
|
|
|
|
exit
|