diff options
author | Anthony Fok <[email protected]> | 2022-03-21 10:25:36 -0600 |
---|---|---|
committer | Anthony Fok <[email protected]> | 2022-03-21 21:01:24 -0600 |
commit | bbd455fe79de4d882c103f4352945f60276e564e (patch) | |
tree | 73eb1a6c01441330d25656a855f9bd37b53993cb /CONTRIBUTING.md | |
parent | 8309a2b1c12009fffb1da574b4d19715f8566683 (diff) | |
download | hugo-bbd455fe79de4d882c103f4352945f60276e564e.tar.gz hugo-bbd455fe79de4d882c103f4352945f60276e564e.zip |
Update CONTRIBUTING.md to use "go install" to install mage
In Go 1.18, "go get" no longer builds packages.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db5f3e247..c370f9304 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -126,7 +126,7 @@ go install For some convenient build and test targets, you also will want to install Mage: ```bash -go get github.com/magefile/mage +go install github.com/magefile/mage ``` Now, to make a change to Hugo's source: |