Update the manuals

This commit is contained in:
Markus Fleschutz
2023-09-01 17:53:03 +02:00
parent 6aeb2895f2
commit 151cbd90cd
577 changed files with 2612 additions and 1003 deletions

View File

@ -7,7 +7,7 @@
PS> ./export-to-manuals.ps1
⏳ (1/2) Reading PowerShell scripts from /home/mf/PowerShell/Scripts/*.ps1 ...
⏳ (2/2) Exporting Markdown manuals to /home/mf/PowerShell/Scripts/../Docs ...
✔️ Exporting 518 Markdown manuals took 28 sec
✔️ Exported 518 Markdown manuals in 28 sec
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -30,7 +30,7 @@ try {
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ Exporting $($Scripts.Count) Markdown manuals took $Elapsed sec"
"✔️ Exported $($Scripts.Count) Markdown manuals in $Elapsed sec"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -2,7 +2,7 @@
.SYNOPSIS
Synchronizes a repo
.DESCRIPTION
This PowerShell script synchronizes a local Git repository by push and pull (including submodules).
This PowerShell script synchronizes a local Git repository by pull and push (including submodules).
.PARAMETER path
Specifies the path to the Git repository
.EXAMPLE