Skip to content

Commit 9712161

Browse files
authored
Updated clone command in INSTALL.md (#1818)
Since version 2.13 of git, the `--recursive` flag has been replaced by `--recurse-submodules`. See [this issue](https://stackoverflow.com/questions/3796927/how-do-i-git-clone-a-repo-including-its-submodules) for details.
1 parent f3daca0 commit 9712161

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ You can link OpenTelemetry C++ SDK with libraries provided in
4545

4646
### Building as standalone CMake Project
4747

48-
1. Getting the opentelementry-cpp source:
48+
1. Getting the opentelementry-cpp source with its submodules:
4949

5050
```console
5151
# Change to the directory where you want to create the code repository
5252
$ cd ~
53-
$ mkdir source && cd source && git clone --recursive https://github.com/open-telemetry/opentelemetry-cpp
53+
$ mkdir source && cd source && git clone --recurse-submodules https://github.com/open-telemetry/opentelemetry-cpp
5454
Cloning into 'opentelemetry-cpp'...
5555
...
5656
Resolving deltas: 100% (3225/3225), done.

0 commit comments

Comments
 (0)