From cebc8fd9e24fc4bd0eb47d4aa2c00f5fe5a882b4 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 4 Aug 2023 11:42:23 +0200 Subject: [PATCH] Update fetch-repo.ps1 and pull-repo.ps1 --- Scripts/fetch-repo.ps1 | 2 +- Scripts/pull-repo.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/fetch-repo.ps1 b/Scripts/fetch-repo.ps1 index 60c94b5e..bfd5b449 100755 --- a/Scripts/fetch-repo.ps1 +++ b/Scripts/fetch-repo.ps1 @@ -31,7 +31,7 @@ try { if ($lastExitCode -ne "0") { throw "'git fetch --all' failed with exit code $lastExitCode" } [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ Fetching updates into 📂$RepoDirName repo took $Elapsed sec" + "✔️ Fetching updates into repository 📂$RepoDirName took $Elapsed sec" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" diff --git a/Scripts/pull-repo.ps1 b/Scripts/pull-repo.ps1 index 8c6ba8ab..fa88190a 100755 --- a/Scripts/pull-repo.ps1 +++ b/Scripts/pull-repo.ps1 @@ -37,7 +37,7 @@ try { if ($lastExitCode -ne "0") { throw "'git submodule update' failed with exit code $lastExitCode" } [int]$Elapsed = $StopWatch.Elapsed.TotalSeconds - "✔️ Updating 📂$RepoDirName repo took $Elapsed sec" + "✔️ Pulling updates into repository 📂$RepoDirName took $Elapsed sec" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"