From 66bccad7e11983d2551583dcfcd9e82b746c74a4 Mon Sep 17 00:00:00 2001
From: Markus Fleschutz <markus.fleschutz@atcsim.de>
Date: Wed, 14 Sep 2022 09:21:14 +0200
Subject: [PATCH] Update pull-repo.ps1

---
 Scripts/pull-repo.ps1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Scripts/pull-repo.ps1 b/Scripts/pull-repo.ps1
index aa1f6d45..8f064fdc 100755
--- a/Scripts/pull-repo.ps1
+++ b/Scripts/pull-repo.ps1
@@ -23,7 +23,7 @@ try {
 	if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
 
 	$RepoDirName = (Get-Item "$RepoDir").Name
-	"⏳ Step 2/4 - Checking Git repository 📂$RepoDirName..."
+	"⏳ Step 2/4 - Checking folder 📂$RepoDirName..."
 	if (-not(Test-Path "$RepoDir" -pathType container)) { throw "Can't access folder: $RepoDir" }
 
 	$Result = (git -C "$RepoDir" status)