Add -u flag for go get govendor in CONTRIBUTING.md
authorAnthony Fok <foka@debian.org>
Fri, 28 Jul 2017 15:18:20 +0000 (09:18 -0600)
committerAnthony Fok <foka@debian.org>
Fri, 28 Jul 2017 15:18:20 +0000 (09:18 -0600)
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

CONTRIBUTING.md

index e2faff229b76ebfd56bb6f7a667df4de17e1b162..2414a651cebce68786815bda3e5ad1024a191742 100644 (file)
@@ -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
 ```