Files
standardnotes-app-web/packages/desktop/build/installer.nsh
2022-06-07 11:52:15 -05:00

7 lines
483 B
NSIS

!macro customInit
; Delete any previous uninstall registry key to ensure the installer doesn't hang at 30%
; https://github.com/electron-userland/electron-builder/issues/4057#issuecomment-557570476
; https://github.com/electron-userland/electron-builder/issues/4092
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{${UNINSTALL_APP_KEY}}"
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${UNINSTALL_APP_KEY}"
!macroend