From 48b3613d387c9f1b385ba7a5bde781e9181e9b29 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Tue, 5 Dec 2017 22:12:53 +0100 Subject: [PATCH] Fix DSpellCheck incomplete installation --- PowerEditor/installer/nsisInclude/binariesComponents.nsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PowerEditor/installer/nsisInclude/binariesComponents.nsh b/PowerEditor/installer/nsisInclude/binariesComponents.nsh index fc5f803b8..f464f9534 100644 --- a/PowerEditor/installer/nsisInclude/binariesComponents.nsh +++ b/PowerEditor/installer/nsisInclude/binariesComponents.nsh @@ -61,10 +61,12 @@ SectionGroup "Plugins" Plugins SetOutPath "$INSTDIR\plugins" !ifdef ARCH64 File "..\bin64\plugins\DSpellCheck.dll" + SetOutPath "$INSTDIR\plugins\Config\Hunspell" File "..\bin64\plugins\Config\Hunspell\en_US.aff" File "..\bin64\plugins\Config\Hunspell\en_US.dic" !else File "..\bin\plugins\DSpellCheck.dll" + SetOutPath "$INSTDIR\plugins\Config\Hunspell" File "..\bin\plugins\Config\Hunspell\en_US.aff" File "..\bin\plugins\Config\Hunspell\en_US.dic" !endif