nerd-fonts/chocolatey/tools/chocolateybeforemodify.ps1
2018-04-15 21:12:29 +05:30

11 lines
295 B
PowerShell

# Removing fonts
function Get-CurrentDirectory
{{
$thisName = $MyInvocation.MyCommand.Name
[IO.Path]::GetDirectoryName((Get-Content function:$thisName).File)
}}
$RemoveFont = Join-Path (Get-CurrentDirectory) "Remove-Font.ps1"
foreach ($font in ({fonts})) {{
& "$RemoveFont" "$font"
}}