From 5d7e82256c57009db027a17278a9ca676b5add17 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Thu, 31 Dec 2020 20:55:59 -0800 Subject: [PATCH] PARALLEL_MAKE is numeric --- cue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cue.py b/cue.py index fb24ff7..a79fe6f 100644 --- a/cue.py +++ b/cue.py @@ -125,7 +125,7 @@ def detect_context(): ci['parallel_make'] = 2 if 'PARALLEL_MAKE' in os.environ: - ci['parallel_make'] = os.environ['PARALLEL_MAKE'] + ci['parallel_make'] = int(os.environ['PARALLEL_MAKE']) ci['clean_deps'] = True if 'CLEAN_DEPS' in os.environ and os.environ['CLEAN_DEPS'].lower() == 'no':