mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
20 lines
335 B
Text
20 lines
335 B
Text
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
set -exuo pipefail
|
||
|
|
||
|
git apply script/patches/use-cross-platform-livekit.patch
|
||
|
|
||
|
# Re-enable error skipping for this check, so that we can unapply the patch
|
||
|
set +e
|
||
|
|
||
|
cargo check -p workspace
|
||
|
exit_code=$?
|
||
|
|
||
|
# Disable error skipping again
|
||
|
set -e
|
||
|
|
||
|
git apply -R script/patches/use-cross-platform-livekit.patch
|
||
|
|
||
|
exit "$exit_code"
|