You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (-not (Get-Command"fontforge"-ErrorAction SilentlyContinue)) {
34
-
Write-Error"FontForge is not installed or not in PATH environment variable."
33
+
Write-Error"Install the latest version of FontForge.`nAfter FontForge is installed, make sure that the location of the 'fontforge.exe' is included in the PATH environment variable."-Category NotInstalled
34
+
exit1
35
+
}
36
+
37
+
if (-not (Test-Path (Join-Path-Path $fontsPath-ChildPath $ScriptFileName))) {
38
+
Write-Error"The script file $ScriptFileName was not found."-Category ObjectNotFound
0 commit comments