textileio / go-textile

[DEPRECATED] Textile is a set of tools and infrastructure for building composable apps and services on the IPFS network
https://textile.io
MIT License
357 stars 43 forks source link

go install should result in `textile` not `go-textile` #875

Closed sanderpick closed 5 years ago

sanderpick commented 5 years ago

Currently, the only way to build the textile binary is with go build:

env GO111MODULE=on go build -i -o textile github.com/textileio/go-textile

The main package needs to be moved into a folder called "cmd/textile", then the following should work fine:

env GO111MODULE=on go install github.com/textileio/go-textile/cmd/textile

re // https://github.com/textileio/go-textile/issues/873