@cryptotaxi247 / kubo / commits / 6d7ad6174

fix: typo in documentation for install path

By default, `go install` will install go $GOBIN and not $GOPATH/bin. In most cases there is no functional difference -- `go install` falls back to $GOPATH/bin when $GOBIN is empty.

Will Hawkins committed Nov 14, 2022 at 14:17 UTC 6d7ad617477ea52d611bbd2eb8c044f0fc22451c
1 file changed +1 -1
Rules.mk
+1 -1
@@ -118,7 +118,7 @@ help:
118 @echo ' all - print this help message'
119 @echo ' build - Build binary at ./cmd/ipfs/ipfs'
120 @echo ' nofuse - Build binary with no fuse support'
121 - @echo ' install - Build binary and install into $$GOPATH/bin'
121 + @echo ' install - Build binary and install into $$GOBIN'
122 # @echo ' dist_install - TODO: c.f. ./cmd/ipfs/dist/README.md'
123 @echo ''
124 @echo 'CLEANING TARGETS:'