6 lines
220 B
Bash
Executable File
6 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
# tshock startup script
|
|
set -e
|
|
[ "$(ls -A /plugins)" ] && cp -f /plugins/* /tshock/ServerPlugins
|
|
exec mono --server --gc=sgen -O=all TerrariaServer.exe -configpath /config -worldpath /world -logpath /logs "$@"
|