fix: use PATH-based cargo-xwin resolution instead of direct wrapper path

Update Linux Windows build script to add scripts directory to PATH and reference cargo-xwin by name rather than direct path to wrapper script, improving compatibility with Tauri's runner resolution mechanism.
This commit is contained in:
2026-03-17 19:26:36 +01:00
parent 92618ee65b
commit 39e70ec526

View File

@@ -10,7 +10,7 @@
"tauri:build": "tauri build",
"helper:windows-x64": "bash ./scripts/build-tunnel-helper.sh x86_64-pc-windows-msvc",
"helper:macos-arm64": "bash ./scripts/build-tunnel-helper.sh aarch64-apple-darwin",
"tauri:build:windows-x64:linux": "chmod +x ./scripts/cargo-xwin && XWIN_ARCH=x86_64 tauri build --runner ./scripts/cargo-xwin --target x86_64-pc-windows-msvc --config src-tauri/tauri.windows.conf.json"
"tauri:build:windows-x64:linux": "chmod +x ./scripts/cargo-xwin && PATH=\"$PWD/scripts:$PATH\" XWIN_ARCH=x86_64 tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc --config src-tauri/tauri.windows.conf.json"
},
"dependencies": {
"@tauri-apps/api": "2.10.1",