]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 31 Mar 2005 20:08:13 +0000 (20:08 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 31 Mar 2005 20:08:13 +0000 (20:08 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3442 b7a2c559-68d2-44c3-8de9-860c34a00d81

packages/windows/install.vbs

index f0a02c389c43b7f4d25d67777e5d9ab740013105..c5d92dcbc680ea9fbfc049a1dfd58cfc36746cc0 100644 (file)
@@ -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