mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 18:46:49 +00:00
Add Git submodule initialization to repository setup steps (#5818)
Was running into an issue building live_kit_server after a fresh clone due to missing dependencies for build.rs. The use of git submodules wasn't currently documented.
This commit is contained in:
parent
4599fa840d
commit
6285decfa2
1 changed files with 8 additions and 0 deletions
|
@ -1,5 +1,13 @@
|
||||||
# Building Zed
|
# Building Zed
|
||||||
|
|
||||||
|
## Repository
|
||||||
|
|
||||||
|
After cloning the repository, ensure all git submodules are initialized:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
git submodule update --init --recursive
|
||||||
|
```
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
- Install [Rust](https://www.rust-lang.org/tools/install)
|
- Install [Rust](https://www.rust-lang.org/tools/install)
|
||||||
|
|
Loading…
Reference in a new issue