summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2017-05-19 13:32:50 -0400
committerDave Henderson <dhenderson@gmail.com>2017-05-19 13:33:00 -0400
commit06abd44acb8a3b78b37d70d7b57bee42c1497f22 (patch)
tree1eb5604608a38ccb8b4f0056fa8a8d65307b9db3 /README.md
parent811a4b73f086a20c99193dc8316c514d1c97607e (diff)
Adding a note about how to install with go get
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index cb60f2c6..f395e564 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,7 @@ Gomplate is an alternative that will let you process templates which also includ
- [Alpine Linux](#alpine-linux)
- [use with Docker](#use-with-docker)
- [manual install](#manual-install)
+ - [install with `go get`](#install-with-go-get)
- [Usage](#usage)
- [Commandline Arguments](#commandline-arguments)
- [`--file`/`-f`, `--in`/`-i`, and `--out`/`-o`](#-file-f-in-i-and-out-o)
@@ -46,7 +47,7 @@ Gomplate is an alternative that will let you process templates which also includ
- [`slice`](#slice)
- [`split`](#split)
- [`splitN`](#splitn)
- - [`replaceAll`](#replaceAll)
+ - [`replaceAll`](#replaceall)
- [`title`](#title)
- [`toLower`](#tolower)
- [`toUpper`](#toupper)
@@ -143,6 +144,16 @@ $ gomplate --help
...
```
+### install with `go get`
+
+If you're a Go user already, sometimes it's faster to just use `go get` to install `gomplate`:
+
+```console
+$ go get github.com/hairyhenderson/gomplate
+$ gomplate --help
+...
+```
+
_Please report any bugs found in the [issue tracker](https://github.com/hairyhenderson/gomplate/issues/)._
## Usage