diff --git a/scripts/fetch-repos.ps1 b/scripts/fetch-repos.ps1 index 18cb13a6..8e4bdf07 100755 --- a/scripts/fetch-repos.ps1 +++ b/scripts/fetch-repos.ps1 @@ -44,7 +44,7 @@ try { $step++ } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds - "✅ Fetched updates into $numFolders Git repositories at 📂$parentDirPath in $($elapsed)s." + "✅ Fetched into $numFolders Git repos 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 147bed51..9bdf441d 100755 --- a/scripts/pull-repos.ps1 +++ b/scripts/pull-repos.ps1 @@ -48,10 +48,10 @@ try { } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds if ($numFailed -eq 0) { - "✅ Update of $numFolders Git repos at 📂$parentDir succeeded in $($elapsed)s." + "✅ Pulled into $numFolders Git repos at 📂$parentDir in $($elapsed)s." exit 0 # success } else { - "⚠️ Updated $numFolders Git repos at 📂$parentDir in $($elapsed)s but $numFailed failed!" + "⚠️ Pulled into $numFolders Git repos at 📂$parentDir but $numFailed failed (took $($elapsed)s)!" exit 1 } } catch {