projects
/
working
/
Hatch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f19526
)
LP1944999: Remove Local Java / JavaFX When Uninstalling
user/jboyer/lp1944999_cleanup_uninstall
author
Jason Boyer
<jboyer@equinoxinitiative.org>
Fri, 24 Sep 2021 16:57:02 +0000
(12:57 -0400)
committer
Jason Boyer
<jboyer@equinoxinitiative.org>
Fri, 24 Sep 2021 16:57:02 +0000
(12:57 -0400)
We put them there, we take them out.
Signed-off-by: Jason Boyer <jboyer@equinoxinitiative.org>
installer/windows/hatch.nsi
patch
|
blob
|
history
diff --git
a/installer/windows/hatch.nsi
b/installer/windows/hatch.nsi
index
08ef332
..
1cd0a54
100644
(file)
--- a/
installer/windows/hatch.nsi
+++ b/
installer/windows/hatch.nsi
@@
-200,6
+200,9
@@
section "uninstall"
; blindly using /r isn't ideal but the extreme unlikelyhood of there being \lib or \extension folders under $PROGRAMFILES makes it low risk.
RmDir /r /REBOOTOK "$INSTDIR\extension"
RmDir /r /REBOOTOK "$INSTDIR\lib"
+ RmDir /r /REBOOTOK "$INSTDIR\java-jdk-win"
+ RmDir /r /REBOOTOK "$INSTDIR\javafx-sdk-win"
+
# Delete uninstaller last
Delete /REBOOTOK "$INSTDIR\Uninstall ${APPNAME}.exe"