diff options
author | Wim <wim@42.be> | 2021-10-17 00:41:08 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2021-10-17 00:41:08 +0200 |
commit | 7ae45c42e712bd0e66c101f3f714c05aa1dc2104 (patch) | |
tree | 0d1a8e7bde19465439bc143e6e47e71d801c82b2 /README.md | |
parent | 7551b4e7a35e20cb18f9ba88dc0f787adbd33877 (diff) | |
download | matterbridge-msglm-7ae45c42e712bd0e66c101f3f714c05aa1dc2104.tar.gz matterbridge-msglm-7ae45c42e712bd0e66c101f3f714c05aa1dc2104.tar.bz2 matterbridge-msglm-7ae45c42e712bd0e66c101f3f714c05aa1dc2104.zip |
Update README to use go install instead of go get
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -182,8 +182,14 @@ Most people just want to use binaries, you can find those [here](https://github. If you really want to build from source, follow these instructions: Go 1.17+ is required. Make sure you have [Go](https://golang.org/doc/install) properly installed. +To install the latest stable run: ```bash -go get github.com/42wim/matterbridge +go install github.com/42wim/matterbridge +``` + +To install the latest dev run: +```bash +go install github.com/42wim/matterbridge@master ``` You should now have matterbridge binary in the ~/go/bin directory: |