8 lines
120 B
Bash
8 lines
120 B
Bash
|
#!/bin/sh
|
||
|
cd /opt/virtualx/
|
||
|
if uname -m | grep -q 'x86_64'; then
|
||
|
./r3-game.x86_64
|
||
|
else
|
||
|
./r3-game.arm64
|
||
|
fi
|