summaryrefslogtreecommitdiff
path: root/apps/compiler/includes/functions.sh
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2020-11-19 18:24:38 +0100
committerGitHub <noreply@github.com>2020-11-19 11:24:38 -0600
commit9ce76376da8fec1803653cf88f885b0d6d7b57ec (patch)
tree3fae4c35e91ee6951971e5bf991c52c189a4055b /apps/compiler/includes/functions.sh
parentfb69db212fd899eeb7344e7f1f24145b09b70289 (diff)
refactor(Apps/Defines): Codefactor warning (#3714)
Diffstat (limited to 'apps/compiler/includes/functions.sh')
-rw-r--r--apps/compiler/includes/functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/compiler/includes/functions.sh b/apps/compiler/includes/functions.sh
index f9ac5ce086..ff25375357 100644
--- a/apps/compiler/includes/functions.sh
+++ b/apps/compiler/includes/functions.sh
@@ -46,7 +46,7 @@ function comp_configure() {
function comp_compile() {
- [ $MTHREADS == 0 ] && MTHREADS=`grep -c ^processor /proc/cpuinfo` && MTHREADS=$(($MTHREADS + 2))
+ [ $MTHREADS == 0 ] && MTHREADS=$(grep -c ^processor /proc/cpuinfo) && MTHREADS=$(($MTHREADS + 2))
echo "Using $MTHREADS threads"