From 1c218d310139e69d43881ae76e7d35b8bc68db21 Mon Sep 17 00:00:00 2001 From: Alexander Gallego Date: Mon, 30 Jul 2018 21:11:05 -0400 Subject: [PATCH] docs: fix getting-started docs --- docs/getting_started.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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!