blob: 9ad0f758c828ec56ee323bd4bac2e6b912a625ba (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# We need to increase the open file limit otherwise the game eventually crashes
# or softlocks with the log pointing to IOExceptions refering to "too many open
# files".
ulimit -Sn 8192
/opt/yarg/YARG
|