diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-12 21:41:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 21:41:22 +0100 |
commit | 39a31040989d1720e3013ecc1da5df2b7d978f06 (patch) | |
tree | 456a27fb8a4524c19009ba686946506c0831e0f4 | |
parent | 9f3618d886d461ea806468a8c690a4a303d66d9b (diff) | |
download | git-bug-39a31040989d1720e3013ecc1da5df2b7d978f06.tar.gz |
readme: update install instruction with go modules
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -44,13 +44,13 @@ That's all ! </details> -<details><summary>go get (unstable)</summary> +<details><summary>go install (unstable)</summary> ```shell -go get -u github.com/MichaelMure/git-bug +go install github.com/MichaelMure/git-bug ``` -If it's not done already, add golang binary directory in your PATH: +If it's not done already, add the golang binary directory in your PATH: ```bash export PATH=$PATH:$(go env GOROOT)/bin:$(go env GOPATH)/bin |