From c77dd8b9e0188752c8dee0714a9aa20ad6bfdedf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Zvonimir=20Crnkovi=C4=87?= Date: Tue, 7 May 2024 23:37:34 +0200 Subject: [PATCH] docs: Add linux build command explanation (#11513) Just adding a short note about `cargo build --release` and the location of the compiled binary. It helps a lot to streamline usage of Zed day to day on Linux. Release Notes: - N/A --- docs/src/development/linux.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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: ```