We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
${If}
1 parent e13ea53 commit faf282cCopy full SHA for faf282c
.changes/nsis-deep-link-uninstall.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": "patch:bug"
3
4
+
5
+Fix NSIS uninstaller failing to clean up deep links
tooling/bundler/src/bundle/windows/templates/installer.nsi
@@ -679,9 +679,9 @@ Section Uninstall
679
; Delete deep links
680
{{#each deep_link_protocols as |protocol| ~}}
681
ReadRegStr $R7 SHCTX "Software\Classes\\{{protocol}}\shell\open\command" ""
682
- !if $R7 == "$\"$INSTDIR\${MAINBINARYNAME}.exe$\" $\"%1$\""
+ ${If} $R7 == "$\"$INSTDIR\${MAINBINARYNAME}.exe$\" $\"%1$\""
683
DeleteRegKey SHCTX "Software\Classes\\{{protocol}}"
684
- !endif
+ ${EndIf}
685
{{/each}}
686
687
0 commit comments