mirror of
https://github.com/ChocoTaco1/docker-tribesnext-server.git
synced 2026-03-06 05:00:22 +00:00
12 lines
258 B
Bash
Executable file
12 lines
258 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export WINEPREFIX=/home/gameserv/.wine
|
|
BASEDIR=$WINEPREFIX/drive_c/Dynamix/Tribes2/GameData
|
|
|
|
find ${BASEDIR} -name \*.dso -execdir /bin/rm {} \;
|
|
|
|
cd $WINEPREFIX/drive_c/Dynamix/Tribes2/GameData
|
|
|
|
xvfb-run -a -w 5 \
|
|
wine Tribes2.exe -dedicated
|
|
|