From 2d7714c242eecd47a69224c3247251b8999fe7f6 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 7 Mar 2025 07:36:16 +0100 Subject: [PATCH] Updated fetch-repos.ps1 and pull-repos.ps1 --- scripts/fetch-repos.ps1 | 2 +- scripts/pull-repos.ps1 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/fetch-repos.ps1 b/scripts/fetch-repos.ps1 index da71c71c..18cb13a6 100755 --- a/scripts/fetch-repos.ps1 +++ b/scripts/fetch-repos.ps1 @@ -44,7 +44,7 @@ try { $step++ } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds - "✅ Fetched into $numFolders repos at 📂$parentDirPath in $($elapsed)s." + "✅ Fetched updates into $numFolders Git repositories at 📂$parentDirPath in $($elapsed)s." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" diff --git a/scripts/pull-repos.ps1 b/scripts/pull-repos.ps1 index fba04267..35558377 100755 --- a/scripts/pull-repos.ps1 +++ b/scripts/pull-repos.ps1 @@ -48,10 +48,10 @@ try { } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds if ($failed -eq 0) { - "✅ $numFolders Git repositories updated at 📂$parentDir in $($elapsed)s." + "✅ $numFolders Git repositories at 📂$parentDir updated in $($elapsed)s." exit 0 # success } else { - "⚠️ $numFolders Git repositories updated at 📂$parentDir in $($elapsed)s but $failed failed!" + "⚠️ $numFolders Git repositories at 📂$parentDir updated in $($elapsed)s but $failed failed!" exit 1 } } catch {