File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 50
50
msbuild MpvNet.sln /m /p:Configuration=Debug
51
51
- name : Create .mo files for localization
52
52
shell : pwsh
53
- run : Install-Package Gettext.Tools -Force; .\lang\create-mo-files.ps1
53
+ run : Install-Package Gettext.Tools -Force; $env:Path = ((Get-Package Gettext.Tools).Source | Split-Path) + '\tools\bin;' + $env:Path; .\lang\create-mo-files.ps1
54
54
- name : Download libmpv # In principle, only update this binary file when significant feature changes occur in mpv/mpv.net
55
55
shell : msys2 {0}
56
56
run : |
Original file line number Diff line number Diff line change @@ -14,12 +14,6 @@ foreach ($it in $PoFiles)
14
14
}
15
15
16
16
$moPath = " $folder /mpvnet.mo"
17
-
18
- if (-not (Test-Path $moPath ))
19
- {
20
- New-Item - ItemType File - Path $moPath | Out-Null
21
- }
22
-
23
17
msgfmt -- output- file= $moPath $it.FullName
24
18
if ($LastExitCode ) { throw $LastExitCode }
25
19
$moPath
You can’t perform that action at this time.
0 commit comments