diff options
author | Nomis101 <[email protected]> | 2020-09-02 20:17:32 +0200 |
---|---|---|
committer | Scott <[email protected]> | 2020-09-03 18:49:52 +0100 |
commit | 3110809845793e060218225ecf7b90a34d23138e (patch) | |
tree | 4310058c0c183f0336e9ce36d4d27b45d9c69ed3 /win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi | |
parent | 3db134845e7decf41a5ff696bcafb5ca88cff3ac (diff) |
WinGUI: Add initial support for Ukrainian locale
Diffstat (limited to 'win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi')
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi index 2dbdf90a1..b3ed1bd64 100644 --- a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi +++ b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi @@ -194,7 +194,11 @@ Section "HandBrake" SectionApp SetOutPath "$INSTDIR\co"
SetOverwrite ifnewer
- File "co\*.*"
+ File "co\*.*" + + SetOutPath "$INSTDIR\uk"
+ SetOverwrite ifnewer
+ File "uk\*.*"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
@@ -258,7 +262,9 @@ Section Uninstall Delete "$INSTDIR\pt-BR\*.*"
RMDir "$INSTDIR\pt-BR" Delete "$INSTDIR\co\*.*"
- RMDir "$INSTDIR\co"
+ RMDir "$INSTDIR\co" + Delete "$INSTDIR\uk\*.*"
+ RMDir "$INSTDIR\uk"
RMDir "$INSTDIR"
|