diff options
author | JR | 2024-01-15 20:43:23 +0000 |
---|---|---|
committer | GitHub | 2024-01-15 20:43:23 +0000 |
commit | 6ce57b7924fc52ee9800637e4f0eae72d123fec6 (patch) | |
tree | 5599cfa814035d1ddecdb1a0942883bb51a5971b /book | |
parent | eca3ccff76b9f45dd2b266215764fe7630dee884 (diff) |
Fix export instructions in installation doc (#9306)
Diffstat (limited to 'book')
-rw-r--r-- | book/src/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/install.md b/book/src/install.md index 2a4273b8..1f200e2e 100644 --- a/book/src/install.md +++ b/book/src/install.md @@ -216,12 +216,12 @@ RUSTFLAGS="-C target-feature=-crt-static" #### Linux and macOS -The **runtime** directory is one below the Helix source, so either set a +The **runtime** directory is one below the Helix source, so either export a `HELIX_RUNTIME` environment variable to point to that directory and add it to your `~/.bashrc` or equivalent: ```sh -HELIX_RUNTIME=~/src/helix/runtime +export HELIX_RUNTIME=~/src/helix/runtime ``` Or, create a symbolic link: |