Update pull-repo.ps1

This commit is contained in:
Markus Fleschutz 2022-09-14 09:21:14 +02:00
parent daf4684c5c
commit 66bccad7e1

View File

@ -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)