mirror of
https://github.com/lensapp/lens.git
synced 2024-12-11 09:03:28 +03:00
91354eae01
- Remove need for using relative paths during build Signed-off-by: Sebastian Malton <sebastian@malton.name>
15 lines
694 B
Plaintext
15 lines
694 B
Plaintext
!macro customInit
|
|
; Make sure all old extensions are removed
|
|
RMDir /r "$INSTDIR\resources\extensions"
|
|
|
|
; Workaround for installer handing when the app directory is removed manually
|
|
${ifNot} ${FileExists} "$INSTDIR"
|
|
DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\{${UNINSTALL_APP_KEY}}"
|
|
${EndIf}
|
|
|
|
; Workaround for the old-format uninstall registry key (some people report it causes hangups, too)
|
|
ReadRegStr $0 HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\${UNINSTALL_APP_KEY}" "QuietUninstallString"
|
|
StrCmp $0 "" proceed 0
|
|
DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\${UNINSTALL_APP_KEY}"
|
|
proceed:
|
|
!macroend |