mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-02-17 11:28:36 +01:00
* Revert "ava: Fix regression caused by #4013 (#4222)" This reverts commit b9f2a96595b2721836d2b73e005640f9c3bfaf23. * linux: Detect Ryujinx.Ava and don't rename the Ryujinx.Ava assembly
11 lines
218 B
Bash
11 lines
218 B
Bash
#!/bin/sh
|
|
|
|
SCRIPT_DIR=$(dirname $(realpath $0))
|
|
RYUJINX_BIN="Ryujinx"
|
|
|
|
if [ -f "$SCRIPT_DIR/Ryujinx.Ava" ]; then
|
|
RYUJINX_BIN="Ryujinx.Ava"
|
|
fi
|
|
|
|
env DOTNET_EnableAlternateStackCheck=1 "$SCRIPT_DIR/$RYUJINX_BIN" "$@"
|