From a538a3b386da6621b8cbe8584a0b679fd8e9fa2f Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sat, 5 Oct 2019 11:01:50 +0200 Subject: [PATCH] Add UUID for upgrading (#5391) * Add UUID for upgrading In my understanding generating two installers with different versions and same --win-upgrade-uuid should uninstall another version during installation, i.e. this is needed to have a proper upgrade instead of a parallel installation of two JabRef versions. * add missing ',' --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 2a95dc4d428..b3d7851f76a 100644 --- a/build.gradle +++ b/build.gradle @@ -582,6 +582,7 @@ jlink { installerOptions = [ '--vendor', 'JabRef', '--app-version', "${project.version}", + '--win-upgrade-uuid', 'd636b4ee-6f10-451e-bf57-c89656780e36', '--win-dir-chooser', '--win-shortcut' ]