1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@3442 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-03-31 20:08:13 +00:00
parent 86f1359c1c
commit c7726d91a9

View 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