summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2022-01-21 03:22:17 -0500
committerDan Davison <dandavison7@gmail.com>2022-01-21 03:26:03 -0500
commit6c7bc2b5e3b1fb39d9273907795d4169ac234de4 (patch)
tree26fa32da85fadc9742017ff55f24e13b2106f413
parentd08536eb5804b51a355197fd9e5896148dc8ac3a (diff)
Document installation from master using homebrew
-rw-r--r--manual/src/build-delta-from-source.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/manual/src/build-delta-from-source.md b/manual/src/build-delta-from-source.md
index ba00b5d1..384a0c45 100644
--- a/manual/src/build-delta-from-source.md
+++ b/manual/src/build-delta-from-source.md
@@ -2,8 +2,16 @@
You'll need to [install the rust tools](https://www.rust-lang.org/learn/get-started). Then:
-```ShellSession
-$ cargo build --release
+```sh
+cargo build --release
```
and use the executable found at `./target/release/delta`.
+
+Alternatively, homebrew users can do
+
+```sh
+brew install --HEAD git-delta
+```
+
+to install the development version of delta with merged but unreleased changes.