Fix typo in pull-repos.ps1

This commit is contained in:
Markus Fleschutz 2022-01-19 09:38:47 +01:00
parent fd7b60182d
commit 8519271de5

View File

@ -31,7 +31,7 @@ try {
[int]$Step = 1
foreach ($Folder in $Folders) {
$FolderName = (get-item "$Folder").Name
"⏳ Step $Step/$NumFolders: Pulling 📂$FolderName... "
"⏳ Step $Step/$($NumFolders): Pulling 📂$FolderName... "
& git -C "$Folder" pull --recurse-submodules --jobs=4
if ($lastExitCode -ne "0") { write-warning "'git pull' in 📂$FolderName failed" }