Skip to content

Commit a4fb754

Browse files
authored
Merge pull request #111 from rajhawaldar/master
Update the installation steps to use 'go install'
2 parents 8452791 + e8d9c2e commit a4fb754

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/BUILDING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Most people can just install a released version of `git-sizer`, [as described in
77

88
1. Make sure that you have a recent version of the [Go language toolchain](https://golang.org/doc/install) installed and that you have set `GOPATH`.
99

10-
2. Get `git-sizer` using `go get`:
10+
2. Get `git-sizer` using `go install`:
1111

12-
go get github.com/github/git-sizer
12+
go install github.com/github/git-sizer@latest
1313

14-
This should fetch and compile the source code and write the executable file to `$GOPATH/bin/`.
14+
This should install the executable file to `$GOPATH/bin/`.
1515

1616
3. Either add `$GOPATH/bin` to your `PATH`, or copy the executable file (`git-sizer` or `git-sizer.exe`) to a directory that is already in your `PATH`.
1717

0 commit comments

Comments
 (0)