7 lines
159 B
Bash
7 lines
159 B
Bash
|
#!/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
|