From 615ddec414d4fcae869d37546da9993caaca2c62 Mon Sep 17 00:00:00 2001 From: 6r1d Date: Tue, 15 Aug 2023 09:52:15 +0300 Subject: [PATCH] [chore] Fix client config path (#358) Signed-off-by: 6r1d --- src/guide/bash.md | 2 +- src/guide/python.md | 2 +- src/guide/rust.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/guide/bash.md b/src/guide/bash.md index f7ad28b57..298f44599 100644 --- a/src/guide/bash.md +++ b/src/guide/bash.md @@ -88,7 +88,7 @@ $ mkdir -p test_docker Copy the configuration file to the client directory: ```bash -$ cp ./configs/client_cli/config.json test_docker/ +$ cp ./configs/client/config.json test_docker/ ``` ::: tip diff --git a/src/guide/python.md b/src/guide/python.md index ff382fbe2..4d47209f1 100644 --- a/src/guide/python.md +++ b/src/guide/python.md @@ -47,7 +47,7 @@ $ pip install ./target/wheels/iroha_python-*.whl Finally, you will need a working client configuration: ```bash -$ cp -vfr ~/Git/iroha/configs/client_cli/config.json example/config.json +$ cp -vfr ~/Git/iroha/configs/client/config.json example/config.json ``` ::: tip diff --git a/src/guide/rust.md b/src/guide/rust.md index 7da208e0c..c00835d6b 100644 --- a/src/guide/rust.md +++ b/src/guide/rust.md @@ -69,7 +69,7 @@ configurations in the `~/Git/iroha/configs` folder. So let's copy the example client configuration somewhere useful: ```bash -$ cp -vfr ~/Git/iroha/configs/client_cli/config.json example/config.json +$ cp -vfr ~/Git/iroha/configs/client/config.json example/config.json ``` We recommend looking through it to familiarise yourself with the key pieces