Update pull-repos.ps1

This commit is contained in:
Markus Fleschutz 2021-10-17 15:38:28 +02:00
parent 103dc88d4d
commit 7e2a1c41fd

View File

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