From 1c3e4e2f07154933f1b05f701f2b675edbeee0d3 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Sun, 24 Sep 2017 10:52:29 +0200 Subject: [PATCH] docs: install: dep ensure --- docs/content/install/_index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/content/install/_index.md b/docs/content/install/_index.md index f80eeff..c7067b2 100644 --- a/docs/content/install/_index.md +++ b/docs/content/install/_index.md @@ -20,7 +20,7 @@ However, until we get around documenting those setups, you will have to run zrep zrepl is currently not packaged on any operating system. Signed & versioned releases are planned but not available yet. -Check out the sources yourself, compile and install to the zrepl user's `$PATH`.
+Check out the sources yourself, fetch dependencies using dep, compile and install to the zrepl user's `$PATH`.
**Note**: if the zrepl binary is not in `$PATH`, you will have to adjust the examples in the [tutorial]({{< relref "tutorial/_index.md" >}}). ```bash @@ -28,6 +28,7 @@ Check out the sources yourself, compile and install to the zrepl user's `$PATH`. cd /root git clone https://github.com/zrepl/zrepl.git cd zrepl +dep ensure go build -o zrepl cp zrepl /usr/local/bin/zrepl rehash