From: Anthony Fok Date: Fri, 28 Jul 2017 15:18:20 +0000 (-0600) Subject: Add -u flag for go get govendor in CONTRIBUTING.md X-Git-Tag: v0.26~21 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=84710eb3ec7e2f941cddec21e48512753ea96ff0;p=brevno-suite%2Fhugo 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 --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e2faff22..2414a651 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 ```