From 322c4ef4d4c6bef3b2788352dd77c627c033ea15 Mon Sep 17 00:00:00 2001 From: Val Markovic Date: Tue, 9 Apr 2013 23:40:04 -0700 Subject: [PATCH] Fix typo introduced in refactor --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c441b6f4..b499d94c 100755 --- a/install.sh +++ b/install.sh @@ -51,7 +51,7 @@ function python_finder { } function num_cores { - if ! command_exists nproc; then + if command_exists nproc; then num_cpus=$(nproc) else num_cpus=1