From f5f70d7a757554251f09acdadf5ae2d4b94eeb7c Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 27 Jan 2018 14:44:20 -0200 Subject: [PATCH] README: Document Homebrew as an installation method --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8389019f..14b3260c 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ It aims to be simpler and easier to use then [GNU Make][make]. - [Installation](#installation) - [Go](#go) + - [Homebrew](#homebrew) - [Snap](#snap) - [Binary](#binary) - [Usage](#usage) @@ -37,6 +38,17 @@ If you have a [Golang][golang] environment setup, you can simply run: go get -u -v github.com/go-task/task/cmd/task ``` +### Homebrew + +If you're on macOS and have [Homebrew][homebrew] installed, getting Task is +as simple as running: + +```bash +brew update +brew tap go-task/tap +brew install go-task +``` + ### Snap Task is available for [Snapcraft][snapcraft], but keep in mind that your @@ -186,7 +198,7 @@ default: vars: {TEXT: "before 2"} cmds: - echo "after" - + echo_sth: cmds: - echo {{.TEXT}} @@ -573,3 +585,4 @@ various use cases. [minify]: https://github.com/tdewolff/minify/tree/master/cmd/minify [examples]: https://github.com/go-task/examples [snapcraft]: https://snapcraft.io/ +[homebrew]: https://brew.sh/