Changed to lowercase

This commit is contained in:
Markus Fleschutz
2020-12-29 14:48:24 +00:00
parent 9618b25d80
commit ea1b2554c0
10 changed files with 10 additions and 9 deletions

View File

@ -1,7 +1,7 @@
#!/snap/bin/powershell
<#
.SYNTAX ./write-logbook.ps1 [<text>]
.DESCRIPTION writes the given text to the logbook (../Data/Logbook.csv)
.DESCRIPTION writes the given text to the logbook (in ../Data/logbook.csv)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
@ -17,7 +17,7 @@ try {
$Line = "$Time,$User,$Text"
$PathToRepo=(get-item $MyInvocation.MyCommand.Path).directory.parent
write-output $Line >> "$PathToRepo/Data/Logbook.csv"
write-output $Line >> "$PathToRepo/Data/logbook.csv"
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"