From 3bde7d48970ed0f9c6e0e13a7fea94ed6c2a5857 Mon Sep 17 00:00:00 2001 From: Santosh Kumar Date: Tue, 7 Dec 2021 00:00:17 +0530 Subject: [PATCH] Install mage outside module (#1592) * Install mage outside module Fixes #1591 * Remove extra info * Use go install instead mage is not a dependency, and we are only interested in mage executable. Co-authored-by: Joe Mooring Co-authored-by: Joe Mooring --- content/en/contribute/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/contribute/development.md b/content/en/contribute/development.md index b2450e9b4..6ba6ccd08 100644 --- a/content/en/contribute/development.md +++ b/content/en/contribute/development.md @@ -154,7 +154,7 @@ go install Hugo relies on [mage](https://github.com/magefile/mage) for some convenient build and test targets. If you don't already have it, get it: ``` -go get github.com/magefile/mage +go install github.com/magefile/mage@latest ``` ### Fork the repository