From 51460340bfb044689471d8e22d06cf93851a5d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1r=C3=A1ndi=20Tam=C3=A1s?= Date: Thu, 20 Apr 2023 00:42:38 +0200 Subject: [PATCH] fix: copy failure in NSIS bundler #6743 (#6744) --- tooling/bundler/src/bundle/windows/nsis.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tooling/bundler/src/bundle/windows/nsis.rs b/tooling/bundler/src/bundle/windows/nsis.rs index dc498f5bb..2171858c2 100644 --- a/tooling/bundler/src/bundle/windows/nsis.rs +++ b/tooling/bundler/src/bundle/windows/nsis.rs @@ -100,6 +100,9 @@ fn get_and_extract_nsis(nsis_toolset_path: &Path, _tauri_tools_path: &Path) -> c let data = download(NSIS_APPLICATIONID_URL)?; info!("extracting NSIS ApplicationID plugin"); extract_zip(&data, &nsis_plugins)?; + + create_dir_all(nsis_plugins.join("x86-unicode"))?; + copy( nsis_plugins .join("ReleaseUnicode")