r3-arch/r3-game.sh

8 lines
126 B
Bash
Raw Normal View History

2024-07-20 16:47:41 +02:00
#!/bin/sh
cd /opt/virtualx/
if uname -m | grep -q 'x86_64'; then
2024-10-29 23:50:47 +01:00
./r3-game.x86_64 $@
2024-07-20 16:47:41 +02:00
else
2024-10-29 23:50:47 +01:00
./r3-game.arm64 $@
2024-07-20 16:47:41 +02:00
fi