mirror of https://github.com/synctv-org/synctv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
303 B
Bash
15 lines
303 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$repo_root"
|
|
|
|
SYNCTV_REGEN_PROTO=1 cargo check \
|
|
-p synctv-proto \
|
|
-p synctv-media-providers \
|
|
-p synctv-cluster \
|
|
-p synctv-livestream \
|
|
-p synctv-realtime \
|
|
-p synctv-proxy \
|
|
--locked
|