Improve the 'next step' line

This commit is contained in:
Markus Fleschutz
2021-09-19 19:09:33 +02:00
parent c95f594c29
commit ece4ccd64d
9 changed files with 30 additions and 34 deletions

View File

@ -29,7 +29,7 @@ try {
[int]$Step = 1
foreach ($Folder in $Folders) {
$FolderName = (get-item "$Folder").Name
"Step $Step/$($FolderCount): 🢃 Fetching 📂$FolderName..."
"👉 Step $Step/$($FolderCount): Fetching 📂$FolderName..."
& git -C "$Folder" fetch --all --recurse-submodules --prune --prune-tags --jobs=4
if ($lastExitCode -ne "0") { throw "'git fetch' failed" }