mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-25 15:58:53 +00:00
Use GOPATH variable if defined in installation from source
This makes the command work on systems with a custom GOPATH environment variable set. If not defined, it will fallback to `$HOME/.go`.
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
5f70e6ee2c
commit
84704aa84b
@@ -70,7 +70,7 @@ choco install hugo -confirm
|
||||
|
||||
#### Vendored Dependencies
|
||||
|
||||
Hugo uses [dep][] to vendor dependencies, but we don't commit the vendored packages themselves to the Hugo git repository. Therefore, a simple `go get` is *not* supported because the command is not vendor aware.
|
||||
Hugo uses [dep][] to vendor dependencies, but we don't commit the vendored packages themselves to the Hugo git repository. Therefore, a simple `go get` is *not* supported because the command is not vendor aware.
|
||||
|
||||
The simplest way is to use [mage][] (a Make alternative for Go projects.)
|
||||
|
||||
@@ -79,7 +79,7 @@ The simplest way is to use [mage][] (a Make alternative for Go projects.)
|
||||
{{< code file="from-gh.sh" >}}
|
||||
go get github.com/magefile/mage
|
||||
go get -d github.com/gohugoio/hugo
|
||||
cd $HOME/go/src/github.com/gohugoio/hugo
|
||||
cd ${GOPATH:-$HOME/go}/src/github.com/gohugoio/hugo
|
||||
mage vendor
|
||||
mage install
|
||||
{{< /code >}}
|
||||
|
||||
Reference in New Issue
Block a user