On Fri, Jul 04, 2025 at 07:25:07PM +0200, Santiago Vila wrote:
> - for py in $(shell py3versions -rv); do \
> + if [ $(nproc) -gt 2 ]; then for py in $(shell py3versions -rv); do \
Note: Should be really
if [ $(shell nproc) -gt 2 ]; then etc
Thanks.