diff --git a/docs/src/development/linux.md b/docs/src/development/linux.md index 398ff361cc..054efc7a89 100644 --- a/docs/src/development/linux.md +++ b/docs/src/development/linux.md @@ -56,6 +56,14 @@ For a release build: cargo run --release ``` +For a release package: + +``` +cargo build --release +``` + +the binary can be found in `target/release` folder. + And to run the tests: ```