Update CONTRIBUTING.md to use "go install" to install mage
authorAnthony Fok <foka@debian.org>
Mon, 21 Mar 2022 16:25:36 +0000 (10:25 -0600)
committerAnthony Fok <anthony.fok@canada.ca>
Tue, 22 Mar 2022 03:01:24 +0000 (21:01 -0600)
In Go 1.18, "go get" no longer builds packages.

.github/workflows/test.yml
CONTRIBUTING.md

index e3a76d38db0f9216de3b8bb7bdb0c7765792c68b..4fea0bd103ce586e29c118c40297ae4ebe43285c 100644 (file)
@@ -9,7 +9,7 @@ jobs:
       matrix:
         # Note: We upgraded to Go 1.18 in Hugo v0.95.0
         # Go 1.18 had some breaking changes on the source level which means Hugo cannot be built
-        # with older Go versions, but the improvements in Go 1.18 were to good to pass on (e.g. break and continue).
+        # with older Go versions, but the improvements in Go 1.18 were too good to pass on (e.g. break and continue).
         # Note that you don't need Go (or Go 1.18) to run a pre-built binary.
         go-version: [1.18.x]
         os: [ubuntu-latest, macos-latest, windows-latest]
index db5f3e24724368b26e249c9bf285fd1d98e5d9c9..c370f930484286fcfab0fe1c95a59f226cec0ed2 100644 (file)
@@ -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: