From e3c9ab459e2c141b4f84fb0dfbb1807052ba4627 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 14 Apr 2021 16:08:10 +0200 Subject: [PATCH] Improve fetch-repos.ps1 and pull-repos.ps1 --- Scripts/fetch-repos.ps1 | 5 ++++- Scripts/pull-repos.ps1 | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Scripts/fetch-repos.ps1 b/Scripts/fetch-repos.ps1 index 31f3a9e6..ca2f57eb 100755 --- a/Scripts/fetch-repos.ps1 +++ b/Scripts/fetch-repos.ps1 @@ -10,6 +10,7 @@ param($ParentDir = "$PWD") try { "Fetching updates for Git repositories under $ParentDir ..." + $StartTime = get-date if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" } set-location $ParentDir @@ -29,7 +30,9 @@ try { $Count++ } - write-host -foregroundColor green "OK - fetched updates for $Count Git repositories under $ParentDir" + $StopTime = get-date + $TimeSpan = new-timeSpan -start $StartTime -end $StopTime + write-host -foregroundColor green "OK - fetched updates for $Count Git repositories under $ParentDir in $($TimeSpan.seconds) second(s)" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" diff --git a/Scripts/pull-repos.ps1 b/Scripts/pull-repos.ps1 index 77ae0e84..e96c8e58 100755 --- a/Scripts/pull-repos.ps1 +++ b/Scripts/pull-repos.ps1 @@ -10,6 +10,7 @@ param($ParentDir = "$PWD") try { "Pulling updates for Git repositories under $ParentDir ..." + $StartTime = get-date if (-not(test-path "$ParentDir" -pathType container)) { throw "Can't access directory: $ParentDir" } set-location "$ParentDir" @@ -29,7 +30,10 @@ try { set-location .. $Count++ } - write-host -foregroundColor green "OK - pulled updates for $Count Git repositories under $ParentDir" + + $StopTime = get-date + $TimeSpan = new-timeSpan -start $StartTime -end $StopTime + write-host -foregroundColor green "OK - pulled updates for $Count Git repositories under $ParentDir in $($TimeSpan.seconds) second(s)" exit 0 } catch { write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"