From c7726d91a9e5e7447ed8572e3dfb81291fc78296 Mon Sep 17 00:00:00 2001 From: cuz Date: Thu, 31 Mar 2005 20:08:13 +0000 Subject: [PATCH] Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@3442 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- packages/windows/install.vbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2