Skip to content

Commit da5d746

Browse files
committed
Updated build-repo.ps1
1 parent b01a456 commit da5d746

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/build-repo.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ function BuildFolder([string]$path) {
3333
& cmake ..
3434
if ($lastExitCode -ne 0) { throw "Executing 'cmake ..' failed with exit code $lastExitCode" }
3535

36-
"⏳ (2/3) Building $dirName by executing 'make -j4'..."
37-
& make -j4
38-
if ($lastExitCode -ne 0) { throw "Executing 'make -j4' failed with exit code $lastExitCode" }
36+
"⏳ (2/3) Building $dirName by executing 'make'..."
37+
& make
38+
if ($lastExitCode -ne 0) { throw "Executing 'make' failed with exit code $lastExitCode" }
3939

4040
"⏳ (3/3) Testing $dirName by executing 'ctest -V'... (if tests are provided)"
4141
& ctest -V

0 commit comments

Comments
 (0)