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:
authorBlueBlock <danb@pobox.com>2019-09-04 18:59:46 +0300
committerBlueBlock <danb@pobox.com>2019-09-04 18:59:46 +0300
commit8a6e2e2281f36c753e17b9c03c5ba5e666dc4599 (patch)
tree08c3232bf96be745190c5da8eff62ce61fceb6ca /Installer
parent55c76ca583726c7cc37eb7de3ba9f759982e9c5f (diff)
revert wix back to InstallInitialize
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 d305ee47a..06f68b91d 100644
--- a/Installer/Windows/Duplicati.wxs
+++ b/Installer/Windows/Duplicati.wxs
@@ -84,13 +84,13 @@
<!-- Remove old versions -->
<InstallExecuteSequence>
- <RemoveExistingProducts After="InstallFinalize" />
+ <RemoveExistingProducts After="InstallInitialize" />
</InstallExecuteSequence>
<Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />
<Upgrade Id="$(var.UpgradeCode)">
<UpgradeVersion Minimum="2.0.0.0" Property="PREVIOUSVERSIONSINSTALLED" Maximum="99.0.0.0" IncludeMinimum="yes" IncludeMaximum="no" />
</Upgrade>
-
+
</Product>
</Wix>