Merge pull request #494 from TotallyNotElite/master

Fix: Circleci fails to build if all cores are used
This commit is contained in:
LightCat 2018-06-09 15:56:04 +02:00 committed by GitHub
commit 0161c8c8f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,4 +7,4 @@ jobs:
- checkout
- run:
name: "Compiling cathook"
command: git submodule update --init --recursive; mkdir build; cd build; cmake ..; make -j$(grep -c '^processor' /proc/cpuinfo); cd ..
command: git submodule update --init --recursive; mkdir build; cd build; cmake ..; make; cd ..