Convert to UTF-8 BOM

This commit is contained in:
Markus Fleschutz 2021-04-16 16:31:55 +02:00
parent 1542765c41
commit a65be7a067

View File

@ -1,4 +1,4 @@
#!/usr/bin/pwsh #!/usr/bin/pwsh
<# <#
.SYNTAX fetch-repos.ps1 [<parent-dir>] .SYNTAX fetch-repos.ps1 [<parent-dir>]
.DESCRIPTION fetches updates for all Git repositories under the current/given directory (including submodules) .DESCRIPTION fetches updates for all Git repositories under the current/given directory (including submodules)
@ -28,7 +28,7 @@ try {
$Count++ $Count++
} }
write-host -foregroundColor green "OK - fetched updates for $Count Git repositories under $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)" write-host -foregroundColor green " fetched updates for $Count Git repositories under $ParentDir in $($StopWatch.Elapsed.Seconds) second(s)"
exit 0 exit 0
} catch { } catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"