diff options
author | Gregorio Martinez <[email protected]> | 2018-10-02 21:14:51 -0400 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2018-10-03 09:50:02 +0300 |
commit | 152cffb13a237651c2277dc6c2c9e4172d58b3df (patch) | |
tree | d396ac4d6474af619ec1438ed910df971a8af477 /CONTRIBUTING.md | |
parent | 0d5110d03324380cb4a288d3fa08c1b86ba227da (diff) | |
download | hugo-152cffb13a237651c2277dc6c2c9e4172d58b3df.tar.gz hugo-152cffb13a237651c2277dc6c2c9e4172d58b3df.zip |
Update README & CONTRIBUTING
Fix broken links for Dev Chat that point to broken gitter.im room.
Remove lines about `mage vendor` target that is no longer available.
Remove broken table of contents links for headings in CONTRIBUTING.md
Fix typo
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5e2cff64d..a04605489 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,11 +18,8 @@ The Hugo community and maintainers are [very active](https://github.com/gohugoio * [Submitting Patches](#submitting-patches) * [Code Contribution Guidelines](#code-contribution-guidelines) * [Git Commit Message Guidelines](#git-commit-message-guidelines) - * [Vendored Dependencies](#vendored-dependencies) * [Fetching the Sources From GitHub](#fetching-the-sources-from-github) - * [Using Git Remotes](#using-git-remotes) - * [Build Hugo with Your Changes](#build-hugo-with-your-changes) - * [Updating the Hugo Sources](#updating-the-hugo-sources) + * [Building Hugo with Your Changes](#building-hugo-with-your-changes) ## Asking Support Questions @@ -106,7 +103,7 @@ Fixes #1949 ### Fetching the Sources From GitHub -Since Hugo 0.48, Hugo uses the Go Modules support built into Go 1.11 to build. The easiest is is to clone Hugo in a directory outside of `GOPATH`, as in the following example: +Since Hugo 0.48, Hugo uses the Go Modules support built into Go 1.11 to build. The easiest is to clone Hugo in a directory outside of `GOPATH`, as in the following example: ```bash mkdir $HOME/src @@ -191,14 +188,3 @@ mage -l HUGO_BUILD_TAGS=extended mage install ```` -### Updating the Hugo Sources - -If you want to stay in sync with the Hugo repository, you can easily pull down -the source changes, but you'll need to keep the vendored packages up-to-date as -well. - -```bash -git pull -mage vendor -``` - |