From: cuz Date: Thu, 31 Mar 2005 20:08:13 +0000 (+0000) Subject: Fixed a bug X-Git-Tag: V2.12.0~397 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c7726d91a9e5e7447ed8572e3dfb81291fc78296;p=cc65 Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@3442 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/packages/windows/install.vbs b/packages/windows/install.vbs index f0a02c389..c5d92dcbc 100644 --- a/packages/windows/install.vbs +++ b/packages/windows/install.vbs @@ -673,7 +673,7 @@ sub CheckFilesToInstall () ' in the registry, but it will not work, which means that the package ' cannot be deinstalled or overwritten. So we have to check that at least ' the uninstaller is available in the same directory as the installer. - if not FileExists (Uninstaller) then + if not FileExists (BuildPath (InstallSource, "uninstall.vbs")) then Abort (GetMsg ("MSG_INCOMPLETE")) end if end sub