fix: use cargo-xwin wrapper script to resolve Tauri runner compatibility

Add cargo-xwin wrapper script that invokes `cargo xwin` subcommand and update Linux Windows build script to use wrapper as --runner instead of cargo-xwin binary name directly. Add chmod +x to ensure wrapper is executable before build.
This commit is contained in:
2026-03-17 19:25:04 +01:00
parent cfe38e5c3b
commit 61e6213b67
2 changed files with 5 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -eu
exec cargo xwin "$@"