diff --git a/Scripts/pull-repos.ps1 b/Scripts/pull-repos.ps1 index 11c71942..0d02013e 100755 --- a/Scripts/pull-repos.ps1 +++ b/Scripts/pull-repos.ps1 @@ -20,9 +20,11 @@ try { $ParentDirName = (get-item "$ParentDir").Name "Found $FolderCount subfolders under 📂$ParentDirName..." + [int]$Step = 0 foreach ($Folder in $Folders) { $FolderName = (get-item "$Folder").Name - "🢃 Pulling 📂$FolderName..." + $Step++ + "🢃 Pulling 📂$FolderName (step $Step/$FolderCount) ..." & git -C "$Folder" pull --recurse-submodules --jobs=4 if ($lastExitCode -ne "0") { write-warning "'git pull' on 📂$FolderName failed" }