Use only 4 cores for now to prevent running out of RAM

This commit is contained in:
Duke Leto
2021-02-26 13:40:25 -05:00
parent 00534af1e8
commit eb831a1e69

View File

@@ -4,7 +4,7 @@
UNAME=$(uname)
if [ "$UNAME" == "Linux" ] ; then
JOBS=$(nproc)
JOBS=4
elif [ "$UNAME" == "FreeBSD" ] ; then
JOBS=$(nproc)
elif [ "$UNAME" == "Darwin" ] ; then