Преглед изворни кода

fix(bundler): fix order of webview2 installer args in nsis bundle (#6042)

Fabian-Lars пре 2 година
родитељ
комит
01b876761a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tooling/bundler/src/bundle/windows/templates/installer.nsi

+ 1 - 1
tooling/bundler/src/bundle/windows/templates/installer.nsi

@@ -319,7 +319,7 @@ Section Webview2
   install_webview2:
     DetailPrint "Installing Webview2..."
     ; $6 holds the path to the webview2 installer
-    ExecWait "$6 /install ${WEBVIEW2INSTALLERARGS}" $1
+    ExecWait "$6 ${WEBVIEW2INSTALLERARGS} /install" $1
     ${If} $1 == 0
       DetailPrint "Webview2 installed sucessfully"
     ${Else}