summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-04-11 12:15:32 +0200
committerLaurenz <laurmaedje@gmail.com>2023-04-11 12:16:09 +0200
commitf58ed110da56f4e2fc2d0b8c390c42359cc0f43c (patch)
tree3ee4114a0338b78e9c59a2a5b9d2f013f7e6c9ba /README.md
parent8734d64ebcbcdf530e14891ea03eca23fa407d56 (diff)
Add cloning the the build steps
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 4e10ac8d..e1091653 100644
--- a/README.md
+++ b/README.md
@@ -162,10 +162,13 @@ invite you to open an issue first so we can explore the design space together.
If you want to contribute and are wondering how everything works, also check out
the [`ARCHITECTURE.md`][architecture] file. It explains how the compiler works.
-To build Typst yourself, you need to have the [latest stable Rust][rust]
-installed. Then, you can build the CLI with the following command:
+To build Typst yourself, first ensure that you have the
+[latest stable Rust][rust] installed. Then, clone this repository and build the
+CLI with the following commands:
```sh
+git clone https://github.com/typst/typst
+cd typst
cargo build --release
```