File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments