When I run the build on a system with a high core count bundle install fails. Reducing it to 8 did help. ``` NCPUS=`nproc` if (( NCPUS > 8 )); then NCPUS=8 fi exec_as_git bundle install -j"${NCPUS}" ```
When I run the build on a system with a high core count bundle install fails.
Reducing it to 8 did help.