diff options
author | sumneko <sumneko@hotmail.com> | 2019-05-22 16:34:34 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-05-22 16:34:34 +0800 |
commit | 09a095225f3c1b2da529eefe5ab2af7de0e04983 (patch) | |
tree | db779a4de7d8a75cd0782163f9550cf7d32a6c34 | |
parent | 44dc7c6316fefb81217538fa101b550114ff4f1c (diff) | |
download | lua-language-server-09a095225f3c1b2da529eefe5ab2af7de0e04983.zip |
osx编译修改文件上限避免报错
-rwxr-xr-x | osx.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,10 @@ cd - cd server mv bin/*.so . + +# avoid too many file opened error +ulimit -n 4000 + ./bin/lua-language-server publish.lua cd - |