mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-01 14:15:11 +00:00
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
This commit is contained in:
parent
3d9f0087ff
commit
c77dd8b9e0
1 changed files with 8 additions and 0 deletions
|
@ -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:
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue