From 48bc38f2e69bc6be7e9582bdcf5f47241c7c1be5 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 6 May 2021 17:22:57 +0200 Subject: [PATCH] Change output of fetch-repos.ps1 --- 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 1d6995b9..508d73e0 100755 --- a/Scripts/fetch-repos.ps1 +++ b/Scripts/fetch-repos.ps1 @@ -18,7 +18,7 @@ try { [int]$Count = 0 get-childItem $ParentDir -attributes Directory | foreach-object { - "⏳ Fetching updates for Git repository 📂$($_.Name) ..." + "🢃 Fetching updates for Git repository 📂$($_.Name) ..." set-location "$($_.FullName)" @@ -31,7 +31,7 @@ try { $ParentDirName = (get-item "$ParentDir").Name [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ fetched updates for $Count Git repositories at 📂$ParentDirName in $Elapsed sec." + "✔️ fetched $Count Git repositories at 📂$ParentDirName in $Elapsed sec." exit 0 } catch { write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"