1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Delete old extensions on Windows update

Signed-off-by: Juho Heikka <juho.heikka@gmail.com>
This commit is contained in:
Juho Heikka 2022-09-30 13:26:13 +03:00
parent e8f691ab0e
commit 614cd7d676

View File

@ -1,4 +1,11 @@
!macro customInit
; Make sure all old extensions are removed
RMDir /r "$INSTDIR\resources\extensions"
; Workaround for old node_modules having already duplicate extensions
RMDir /r "$APPDATA\${APP_FILENAME}\node_modules\lens-license"
RMDir /r "$APPDATA\${APP_FILENAME}\node_modules\lens-survey"
RMDir /r "$APPDATA\${APP_FILENAME}\node_modules\lens-telemetry"
; Workaround for installer handing when the app directory is removed manually
${ifNot} ${FileExists} "$INSTDIR"
DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\{${UNINSTALL_APP_KEY}}"