Updated the Markdown manuals

This commit is contained in:
Markus Fleschutz
2024-01-03 12:11:22 +01:00
parent fa9c10d2a4
commit be47b2d002
605 changed files with 954 additions and 628 deletions

View File

@ -80,8 +80,8 @@ function BuildInDir([string]$path) {
& make -j4
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
"⏳ (4/4) Executing 'make test' to perform tests (optional)..."
& make test
"⏳ (4/4) Executing 'ctest -V' to perform tests (optional)..."
& ctest -V
if ($lastExitCode -ne "0") { throw "Executing 'make test' has failed" }
} elseif (Test-Path "$path/configure" -pathType leaf) {
@ -184,7 +184,7 @@ try {
$repoDirName = (Get-Item "$path").Name
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✔️ Built 📂$repoDirName in $elapsed sec"
"✔️ Built repo 📂$repoDirName in $elapsed sec"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
@ -192,4 +192,4 @@ try {
}
```
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 12/16/2023 10:12:17)*
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 01/03/2024 12:10:43)*