mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
6 lines
231 B
Bash
Executable file
6 lines
231 B
Bash
Executable file
#!/bin/bash
|
|
[[ $# -eq 1 && "$1" == -psn_* ]] && shift
|
|
cd "${0%/*}/../Resources"
|
|
DATA="$(cd "../../.." && echo "$PWD")"
|
|
export DYLD_FALLBACK_LIBRARY_PATH="$PWD:$DYLD_FALLBACK_LIBRARY_PATH"
|
|
exec ./steamshim --gameFolder="$DATA" "$@"
|