We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5621174 commit 544328dCopy full SHA for 544328d
.changes/bundler-nsis-webview2-success.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": "patch:bug"
3
4
+
5
+Fix NSIS installer failing to determine whether webview installer downloaded correctly or not.
crates/tauri-bundler/src/bundle/windows/nsis/installer.nsi
@@ -541,7 +541,7 @@ Section WebView2
541
DetailPrint "$(webview2Downloading)"
542
NSISdl::download "https://go.microsoft.com/fwlink/p/?LinkId=2124703" "$TEMP\MicrosoftEdgeWebview2Setup.exe"
543
Pop $0
544
- ${If} $0 = 0
+ ${If} $0 == "success"
545
DetailPrint "$(webview2DownloadSuccess)"
546
${Else}
547
DetailPrint "$(webview2DownloadError)"
0 commit comments