Skip to content

Commit

Permalink
fix wrong installation instruction (MystenLabs#2935)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkuo authored Jul 4, 2022
1 parent ba9d2bf commit ca3d228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/src/build/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ In addition, to conduct advanced work such as altering Sui itself, also obtain:
To develop in Sui, you will need the Sui binaries. After installing `cargo`, run:
```shell
$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch "devnet" sui sui-json-rpc
$ cargo install --locked --git https://github.com/MystenLabs/sui.git --branch "devnet" sui sui-gateway
```
This will put the following binaries in your `PATH` (ex. under `~/.cargo/bin`) that provide these command line interfaces (CLIs):
Expand Down
2 changes: 1 addition & 1 deletion doc/utils/sui-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ command -v cargo >/dev/null 2>&1 || { echo "Cargo (https://doc.rust-lang.org/car
rm -rf sui/

## Build and install Sui binaries
cargo install --locked --git https://github.com/MystenLabs/sui.git --branch devnet sui sui-json-rpc
cargo install --locked --git https://github.com/MystenLabs/sui.git --branch devnet sui sui-gateway

## Install Move Analyzer language server plugin
cargo install --git https://github.com/move-language/move move-analyzer
Expand Down

0 comments on commit ca3d228

Please sign in to comment.