From a65be7a0671b5d355c7ef24f95c81f1af53c0d0b Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 16 Apr 2021 16:31:55 +0200 Subject: [PATCH] Convert to UTF-8 BOM --- Scripts/fetch-repos.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/fetch-repos.ps1 b/Scripts/fetch-repos.ps1 index df9479c6..9aace9ac 100755 --- a/Scripts/fetch-repos.ps1 +++ b/Scripts/fetch-repos.ps1 @@ -1,4 +1,4 @@ -#!/usr/bin/pwsh +#!/usr/bin/pwsh <# .SYNTAX fetch-repos.ps1 [] .DESCRIPTION fetches updates for all Git repositories under the current/given directory (including submodules) @@ -28,7 +28,7 @@ try { $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 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"