mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-23 00:13:36 +01:00
Fix typo
This commit is contained in:
parent
cf1ff0c33b
commit
00150f3a6c
@ -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" }
|
||||
|
@ -29,7 +29,7 @@ try {
|
||||
[int]$Step = 1
|
||||
foreach ($Folder in $Folders) {
|
||||
$FolderName = (get-item "$Folder").Name
|
||||
"Step $Step/$FolderCount: 🢃 Pulling 📂$($FolderName)..."
|
||||
"Step $Step/$($FolderCount): 🢃 Pulling 📂$($FolderName)..."
|
||||
|
||||
& git -C "$Folder" pull --recurse-submodules --jobs=4
|
||||
if ($lastExitCode -ne "0") { write-warning "'git pull' on 📂$FolderName failed" }
|
||||
|
Loading…
Reference in New Issue
Block a user