Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/building.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Building

After cloning the repo, ensure all submodules are cloned.
After cloning the repo ensure all submodules are cloned.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add this comma back. Removing it makes the grammar incorrect.


```
git submodule update --init --checkout --recursive
```

If you don't have Git LFS installed when cloning the repository, you'll need to pull the LFS objects

```
git lfs fetch --all && git lfs pull && git submodule foreach --recursive 'git lfs fetch --all && git lfs pull'
```

Dependencies can be installed with the provided scripts.

```
Expand Down