mirror of https://github.com/waku-org/nwaku.git
11 lines
258 B
Markdown
11 lines
258 B
Markdown
|
# Submodules
|
||
|
|
||
|
We use Git submodules in the `vendor` directory to track internal Nim
|
||
|
dependencies. We want to update submodules all at once to avoid issues.
|
||
|
|
||
|
```
|
||
|
git submodule foreach --recursive git submodule update --init
|
||
|
git submodule update --remote
|
||
|
```
|
||
|
|