Skip to content

Commit

Permalink
build workflow: fix bug using Resolve-Path
Browse files Browse the repository at this point in the history
  • Loading branch information
stax76 committed Dec 9, 2023
1 parent dfd9abe commit 34a3855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang/create-mo-files.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ foreach ($it in $PoFiles)
{
$folder = "$ExeFolder/Locale/$($it.BaseName)/LC_MESSAGES"
CreateFolder $folder
$moPath = Resolve-Path $folder/mpvnet.mo
$moPath = Resolve-Path $folder/mpvnet.mo -ErrorAction Ignore
msgfmt --output-file=$moPath $it.FullName

if ($LASTEXITCODE -ne 0)
Expand Down

0 comments on commit 34a3855

Please sign in to comment.