fix: restore mcp flexibility and improve cli tooling
This commit is contained in:
13
scripts/check-windows.sh
Normal file
13
scripts/check-windows.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
if ! rustup target list --installed | grep -q "x86_64-pc-windows-gnu"; then
|
||||
echo "Installing Windows GNU target..."
|
||||
rustup target add x86_64-pc-windows-gnu
|
||||
fi
|
||||
|
||||
echo "Running cargo check for Windows (x86_64-pc-windows-gnu)..."
|
||||
cargo check --target x86_64-pc-windows-gnu
|
||||
|
||||
echo "Windows compatibility check completed successfully."
|
||||
Reference in New Issue
Block a user