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 {