summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2017-07-28 09:18:20 -0600
committerAnthony Fok <foka@debian.org>2017-07-28 09:18:20 -0600
commit84710eb3ec7e2f941cddec21e48512753ea96ff0 (patch)
tree47171066325535be536ff47ec8bd57e81b3beed1 /CONTRIBUTING.md
parent555a9bc80653597a5c5c82fe84222813dfe5aff8 (diff)
Add -u flag for go get govendor in CONTRIBUTING.md
This to to ensure the reader is not stuck with a stale version of govendor where `govendor get` may not actually build/install the final hugo binary. See kardianos/govendor#330
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e2faff229..2414a651c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -97,7 +97,7 @@ You **must use govendor** to fetch and manage Hugo's dependencies.
### Fetch the Sources From GitHub
```
-go get github.com/kardianos/govendor
+go get -u github.com/kardianos/govendor
govendor get github.com/gohugoio/hugo
```