Improve output of clone-repos.ps1

This commit is contained in:
Markus Fleschutz 2021-07-02 15:56:38 +02:00
parent 427da3ef60
commit 559699e380

View File

@ -16,6 +16,8 @@ try {
if ($lastExitCode -ne "0") { throw "Can't execute 'git' - make sure Git is installed and available" }
$Table = import-csv "$PSScriptRoot/../Data/git-repos.csv"
$TableCount = $Table.count
"Found $TableCount entries in Data/git-repos.csv database..."
[int]$Count = 0
foreach($Row in $Table) {