Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2019-09-03 23:50:48 +0300
committerGitHub <noreply@github.com>2019-09-03 23:50:48 +0300
commitc03ccb8aae608805c4ed1da46954a2d97c37e35d (patch)
tree446c593e22b7b30c8cd36c9829f2a317c8e002f3 /Installer
parent1b476c6a102e2cbb3c273d53b2dfccb0e40a67f3 (diff)
parentc912ae3e511f8662f02563850c8e871d8d506d2b (diff)
Merge pull request #3886 from BlueBlock/change-wix-installer-to-afterinstallfinalize
Change Wix installer to after-installfinalize
Diffstat (limited to 'Installer')
-rw-r--r--Installer/Windows/Duplicati.wxs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Installer/Windows/Duplicati.wxs b/Installer/Windows/Duplicati.wxs
index 0ee98959e..d305ee47a 100644
--- a/Installer/Windows/Duplicati.wxs
+++ b/Installer/Windows/Duplicati.wxs
@@ -27,7 +27,7 @@
<Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />
<PropertyRef Id="WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED"/>
- <Condition Message="The .NET Framework 4.6.2 must be installed ([WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED])">
+ <Condition Message="The .NET Framework 4.6.2 must be installed">
<![CDATA[Installed OR WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED]]>
</Condition>
@@ -84,7 +84,7 @@
<!-- Remove old versions -->
<InstallExecuteSequence>
- <RemoveExistingProducts Before='InstallInitialize' />
+ <RemoveExistingProducts After="InstallFinalize" />
</InstallExecuteSequence>
<Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />