Some checks failed
Release job / Create tag (push) Successful in 6s
Release job / Release for linux-arm64 (push) Successful in 1m43s
Release job / Release for linux-x64 (push) Successful in 1m43s
Release job / Release for win-x64 (push) Has been cancelled
Release job / flatpak_release (push) Has been cancelled
24 lines
447 B
Bash
Executable File
24 lines
447 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPT_DIR=$(dirname "$(realpath "$0")")
|
|
|
|
if [ -f "$SCRIPT_DIR/Ryujinx.Headless.SDL2" ]; then
|
|
RYUJINX_BIN="Ryujinx.Headless.SDL2"
|
|
fi
|
|
|
|
if [ -f "$SCRIPT_DIR/Ryujinx" ]; then
|
|
RYUJINX_BIN="Ryujinx"
|
|
fi
|
|
|
|
if [ -z "$RYUJINX_BIN" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
COMMAND="env DOTNET_EnableAlternateStackCheck=1"
|
|
|
|
if command -v gamemoderun > /dev/null 2>&1; then
|
|
COMMAND="$COMMAND gamemoderun"
|
|
fi
|
|
|
|
exec $COMMAND "$SCRIPT_DIR/$RYUJINX_BIN" "$@"
|