aboutsummaryrefslogtreecommitdiff
path: root/docker/AppRun.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/AppRun.sh')
-rw-r--r--docker/AppRun.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/AppRun.sh b/docker/AppRun.sh
index e897309..41d1223 100644
--- a/docker/AppRun.sh
+++ b/docker/AppRun.sh
@@ -124,5 +124,9 @@ fi
# use their own system Python environment.
unset PYTHONHOME PYTHONPATH PYTHONNOUSERSITE
+# Raise open file descriptor limit — large modlists with FUSE VFS
+# can easily exceed the default 1024
+ulimit -n 65536 2>/dev/null
+
cd "${APPIMAGE_DIR}"
exec "${HERE}/usr/bin/ModOrganizer.bin" "$@"