We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: The current documentation instructs users to build the Iroha client using the following command:
cargo build -p iroha_client_cli --release
The correct command to build the Iroha client is:
cargo build --bin iroha
The artifacts will then be found in the target/debug directory.
target/debug
Suggested Fix: Update the documentation to use the correct build command:
And specify that the artifacts will be in the target/debug directory. As well replace all places with iroha_client_cli on iroha.
iroha_client_cli
iroha
The text was updated successfully, but these errors were encountered:
Related: #480
Sorry, something went wrong.
yamkovoy
No branches or pull requests
Description:
The current documentation instructs users to build the Iroha client using the following command:
The correct command to build the Iroha client is:
The artifacts will then be found in the
target/debug
directory.Suggested Fix:
Update the documentation to use the correct build command:
And specify that the artifacts will be in the
target/debug
directory.As well replace all places with
iroha_client_cli
oniroha
.The text was updated successfully, but these errors were encountered: