PARALLEL_MAKE is numeric

This commit is contained in:
Michael Davidsaver
2020-12-31 20:55:59 -08:00
parent ad8dd4a136
commit 5d7e82256c

2
cue.py
View File

@@ -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':