Skip to content

Commit 4ea2bdc

Browse files
Fix Install-NerdFont indentation for CI
1 parent 62233a5 commit 4ea2bdc

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

src/functions/public/Install-NerdFont.ps1

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -171,25 +171,25 @@ Please run the command again with elevated rights (Run as Administrator) or prov
171171
Write-Verbose "[$fontName] - Cache hit at [$cachedFile]"
172172
Copy-Item -LiteralPath $cachedFile -Destination $downloadPath -Force
173173
$item = [pscustomobject]@{
174-
Name = $fontName
175-
URL = $URL
176-
DownloadPath = $downloadPath
177-
CachedFile = $cachedFile
178-
CacheTagDir = $cacheTagDir
179-
FromCache = $true
180-
}
174+
Name = $fontName
175+
URL = $URL
176+
DownloadPath = $downloadPath
177+
CachedFile = $cachedFile
178+
CacheTagDir = $cacheTagDir
179+
FromCache = $true
180+
}
181181
$pending.Add($item)
182182
$readyToInstall.Add($item)
183183
} else {
184184
Write-Verbose "[$fontName] - Queue download to [$downloadPath]"
185185
$pending.Add([pscustomobject]@{
186-
Name = $fontName
187-
URL = $URL
188-
DownloadPath = $downloadPath
189-
CachedFile = $cachedFile
190-
CacheTagDir = $cacheTagDir
191-
FromCache = $false
192-
})
186+
Name = $fontName
187+
URL = $URL
188+
DownloadPath = $downloadPath
189+
CachedFile = $cachedFile
190+
CacheTagDir = $cacheTagDir
191+
FromCache = $false
192+
})
193193
}
194194
}
195195

0 commit comments

Comments
 (0)