Update check-repo.ps1

This commit is contained in:
Markus Fleschutz 2022-10-12 13:24:19 +02:00
parent b6a4db1c1f
commit bffb7d6a11

View File

@ -18,28 +18,28 @@ param([string]$RepoDir = "$PWD")
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
Write-Host "⏳ (1/6) Searching for Git... " -noNewline
Write-Host "⏳ (1/6) Searching for Git... " -noNewline
& git --version
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
$FullPath = Resolve-Path "$RepoDir"
Write-Host "⏳ (2/6) Checking path... " -noNewline
Write-Host "⏳ (2/6) Checking path... " -noNewline
if (!(Test-Path "$FullPath" -pathType Container)) { throw "Can't access folder: $FullPath" }
"$FullPath"
Write-Host "⏳ (3/6) Searching for .git subfolder... " -noNewline
Write-Host "⏳ (3/6) Searching for subfolder 📂.git..." -noNewline
if (!(Test-Path "$FullPath/.git" -pathType container)) { throw "Can't access folder: $FullPath/.git" }
"OK"
Write-Host "⏳ (4/6) Querying remote URL... " -noNewline
Write-Host "⏳ (4/6) Querying remote URL... " -noNewline
& git -C "$FullPath" remote get-url origin
if ($lastExitCode -ne "0") { throw "'git status' failed with exit code $lastExitCode" }
Write-Host "⏳ (5/6) Verifying data integrity... "
Write-Host "⏳ (5/6) Verifying data integrity..."
& git -C "$FullPath" fsck
if ($lastExitCode -ne "0") { throw "'git fsck' failed with exit code $lastExitCode" }
Write-Host "⏳ (6/6) Checking status... " -noNewline
Write-Host "⏳ (6/6) Checking status... " -noNewline
& git -C "$FullPath" status --short
if ($lastExitCode -ne "0") { throw "'git status' failed with exit code $lastExitCode" }
" "