From 2e86cb0fa44b181a7d0db78a53408d53c8b2a295 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 13 Apr 2022 11:10:51 +0200 Subject: [PATCH] Update fetch-repo.ps1 --- Scripts/fetch-repo.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scripts/fetch-repo.ps1 b/Scripts/fetch-repo.ps1 index 8b4622ee..5fcdc228 100755 --- a/Scripts/fetch-repo.ps1 +++ b/Scripts/fetch-repo.ps1 @@ -1,6 +1,6 @@ <# .SYNOPSIS - Fetches Git repository updates + Fetches updates for a Git repository .DESCRIPTION This PowerShell script fetches updates for a local Git repository (including submodules). .PARAMETER RepoDir @@ -24,15 +24,15 @@ try { if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" } - "⏳ Step 2/2: Fetching updates... " + "⏳ Step 2/2: Fetching updates (including submodules)... " & git -C "$RepoDir" fetch --all --recurse-submodules --prune --prune-tags --force if ($lastExitCode -ne "0") { throw "'git fetch' failed with exit code $lastExitCode" } $RepoDirName = (get-item "$RepoDir").Name [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ fetched updates for Git repository 📂$RepoDirName in $Elapsed sec" + "✔️ fetched updates for repo 📂$RepoDirName in $Elapsed sec" exit 0 # success } catch { - "⚠️ Error $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" + "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" exit 1 } \ No newline at end of file