fix: check in a script that runs `cargo check` for Windows and Linux

main
_ 2024-01-21 19:08:10 -06:00
parent 3639862c04
commit c829aaa038
1 changed files with 6 additions and 0 deletions

6
scripts/check.bash Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
cargo check -p ptth_server --target x86_64-pc-windows-gnu
cargo check -p ptth_server --target x86_64-unknown-linux-gnu