summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-10-05 09:15:02 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-10-05 10:53:02 +0200
commit8d2580f07c0253e12524a4b5c13165f876d00b21 (patch)
tree92cdd457ee0941b340d694151ab3c01e93dcca92 /CONTRIBUTING.md
parent06e5633400b37bec2ebb6e4a9ea4603a0afcd010 (diff)
Replace make with mage
Fixes #3937
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2414a651c..c308ff5e7 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -145,11 +145,13 @@ started:
### Build Hugo with Your Changes
+**Note:** Hugo uses [mage](https://github.com/magefile/mage) to build.
+
```bash
cd $HOME/go/src/github.com/gohugoio/hugo
-make hugo
+mage hugo
# or to install in $HOME/go/bin:
-make install
+mage install
```
### Updating the Hugo Sources
@@ -160,6 +162,6 @@ well.
```
git pull
-make vendor
+mage vendor
```