From 9c5406891eba0e3f66d4e7848aa65a1a21defbdd Mon Sep 17 00:00:00 2001 From: Sridhar Ganesan Date: Wed, 18 Jul 2018 12:18:57 +0200 Subject: [PATCH] Changing docs for cosmos-sdk-cli - including $ before beginning shell command --- docs/sdk/cosmos-sdk-cli.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/sdk/cosmos-sdk-cli.md b/docs/sdk/cosmos-sdk-cli.md index 548623049..2a418534d 100644 --- a/docs/sdk/cosmos-sdk-cli.md +++ b/docs/sdk/cosmos-sdk-cli.md @@ -6,29 +6,29 @@ Create a new blockchain project based on cosmos-sdk with a single command. # Installation ```shell -go get github.com/cosmos/cosmos-sdk -cd $GOPATH/src/github.com/cosmos/cosmos-sdk -make all +$go get github.com/cosmos/cosmos-sdk +$cd $GOPATH/src/github.com/cosmos/cosmos-sdk +$make install_cosmos-sdk-cli ``` This will install a binary cosmos-sdk-cli # Creating a new project -**cosmos-sdk-cli init** _Your-Project-Name_ +**$cosmos-sdk-cli init** _Your-Project-Name_ This will initialize a project, the dependencies, directory structures with the specified project name. ### Example: ```shell -cosmos-sdk-cli init testzone -p github.com/your_user_name/testzone +$cosmos-sdk-cli init testzone -p github.com/your_user_name/testzone ``` -p remote project path (optional). If this is not provided, it creates testzone under $GOPATH/src/ ```shell -cd $GOPATH/src/github.com/your_user_name/testzone -make +$cd $GOPATH/src/github.com/your_user_name/testzone +$make ``` -This will create two binaries(basecli and basecoind) under bin folder. basecoind is the full node of the application which you can run, and basecli is your light client. +This will create two binaries(testzonecli and testzoned) under bin folder. testzoned is the full node of the application which you can run, and testzonecli is your light client.