plug-in runs on windows, path is with backslashes

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5113 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-04-21 09:02:11 +00:00
parent ee27bc04fc
commit 2fbf967106

View file

@ -5723,7 +5723,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
// DLL name on the user machine
char tempDLL[NSIS_MAX_STRLEN];
string dllName = get_file_name(dllPath);
wsprintf(tempDLL, "$PLUGINSDIR%c%s", PATH_SEPARATOR_C, dllName.c_str());
wsprintf(tempDLL, "$PLUGINSDIR\\%s", dllName.c_str());
// Add the DLL to the installer
if (data_handle == -1)