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.
5 lines
50 B
Bash
5 lines
50 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
exec cargo xwin "$@"
|