From 04afaf32c6755d1f88c771314e7ab76fd7fcbb64 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 18 Jun 2021 09:26:42 +0200 Subject: [PATCH] Fix typo --- Scripts/pull-repos.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/pull-repos.ps1 b/Scripts/pull-repos.ps1 index 0814a640..f4e49e75 100755 --- a/Scripts/pull-repos.ps1 +++ b/Scripts/pull-repos.ps1 @@ -24,7 +24,7 @@ try { foreach ($Folder in $Folders) { $FolderName = (get-item "$Folder").Name $Step++ - "🢃 Pulling #$Step: 📂$FolderName ..." + "🢃 Pulling #$($Step): 📂$FolderName ..." & git -C "$Folder" pull --recurse-submodules --jobs=4 if ($lastExitCode -ne "0") { write-warning "'git pull' on 📂$FolderName failed" }