mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-04-28 14:44:36 +00:00
fix command
This commit is contained in:
parent
f667ec6a7b
commit
05c319cf6d
@ -29,12 +29,12 @@ class CMake(Make):
|
|||||||
return 'cmake --build . --target ' + target
|
return 'cmake --build . --target ' + target
|
||||||
|
|
||||||
def makeCommand(self, props):
|
def makeCommand(self, props):
|
||||||
command = [self.make()]
|
command = self.make()
|
||||||
|
|
||||||
cpus = multiprocessing.cpu_count()
|
cpus = multiprocessing.cpu_count()
|
||||||
|
|
||||||
if cpus:
|
if cpus:
|
||||||
command.extend(['--parallel', str(cpus)])
|
command += '--parallel ' str(cpus)
|
||||||
|
|
||||||
return command
|
return command
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user