fixed bug #1449879 - NSIS User Manual script error

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4625 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-04-05 18:31:03 +00:00
parent daa44a760c
commit 984e1ae960

View file

@ -79,10 +79,13 @@ function parser(fn)
lfn = lfn.replace(re, "\\");
if (FolderExists(lfn))
{
if (!TryShellExec(lfn))
{
var objShell = new ActiveXObject("Shell.Application");
objShell.Open(lfn);
}
}
else if (FileExists(lfn))
{
execed = false;