Source Code Pro monospaced font 1.010
This commit is contained in:
21
SourceCodePro/tools/chocolateyInstall.ps1
Normal file
21
SourceCodePro/tools/chocolateyInstall.ps1
Normal file
@@ -0,0 +1,21 @@
|
||||
try {
|
||||
$package = 'SourceCodePro'
|
||||
|
||||
$fontUrl = 'https://github.com/downloads/adobe/Source-Code-Pro/SourceCodePro_FontsOnly-1.010.zip'
|
||||
$destination = Join-Path $Env:Temp 'SourceCodePro'
|
||||
|
||||
Install-ChocolateyZipPackage -url $fontUrl -unzipLocation $destination
|
||||
|
||||
$shell = New-Object -ComObject Shell.Application
|
||||
$fontsFolder = $shell.Namespace(0x14)
|
||||
|
||||
Get-ChildItem $destination -Recurse -Filter *.otf |
|
||||
% { $fontsFolder.CopyHere($_.FullName) }
|
||||
|
||||
Remove-Item $destination -Recurse
|
||||
|
||||
Write-ChocolateySuccess $package
|
||||
} catch {
|
||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||
throw
|
||||
}
|
Reference in New Issue
Block a user