diff --git a/docs/getting_started.md b/docs/getting_started.md index fdd73db89..bbf03ec29 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -19,17 +19,18 @@ It is a fully compliant CMake project. If you know CMake you can skip this part. ```bash git clone https://github.com/senior7515/smf.git cd smf -git clone https://github.com/senior7515/smf --recursive +git submodule update --init --recursive -# Install smf deps +# Install seastar system deps # -./install-deps.sh +./src/third_party/seastar/install-dependencies.sh -# Install seastar system deps +# Install smf deps # -./src/third_party/seastar/install-dependencies.sh +./install-deps.sh + # We have a wrapper script to build the project # try build.sh -h for more advanced usage!