blob: 20410b5e08ddce78a612f218a258ab7d437c7bac (
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-nightly/YARG
|