2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

nodejs: attempt to increase file descriptor limit

Fixes #296
This commit is contained in:
Dylan Araps 2021-07-20 18:44:36 +03:00
parent 3f7145d778
commit da4758140f
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

View File

@ -8,6 +8,10 @@
mv -f _ node.gyp
}
# Attempt to increase file descriptor limit
# as build may exhaust default (1024).
ulimit -n 4096 2>/dev/null || :
./configure \
--shared-zlib \
--shared-openssl \