Browse Source

NSIS: Fix incorrect uninstall registry key name (#13578)

Thanks to Alexander for the bug report.
David Cole 13 năm trước cách đây
mục cha
commit
12c092cf67
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Modules/NSIS.template.in

+ 1 - 1
Modules/NSIS.template.in

@@ -902,7 +902,7 @@ SectionEnd
 Function .onInit
   StrCmp "@CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL@" "ON" 0 inst
 
-  ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_NAME@" "UninstallString"
+  ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "UninstallString"
   StrCmp $0 "" inst
 
   MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \