File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,5 @@ $importedFont =
2121 Select-Object - First 1 |
2222 Import-Font
2323
24- $importedFont.GetGlyph (" P" ).SVG.Save(" $pwd /${FontFamily} _P.svg" )
25- Get-Item " $pwd /${FontFamily} _P.svg"
26- $importedFont.GetGlyph (" q" ).SVG.Save(" $pwd /${FontFamily} _q.svg" )
27- Get-Item " $pwd /${FontFamily} _q.svg"
24+ $importedFont.GetGlyph (" P" ).Save(" ./${FontFamily} _P.svg" )
25+ $importedFont.GetGlyph (" q" ).Save(" ./${FontFamily} _q.svg" )
Original file line number Diff line number Diff line change 1+ param ([string ]$FilePath )
2+
3+ $unresolvedPath = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath ($FilePath )
4+ $createdFile = New-Item - ItemType File - Path $unresolvedPath
5+ $this.SVG.Save ($createdFile.FullName )
6+ Get-Item - LiteralPath $createdFile.FullName
You can’t perform that action at this time.
0 commit comments