DarthSim / overmind

Process manager for Procfile-based applications and tmux
MIT License
2.86k stars 81 forks source link

Fixed `go install` usage #149

Closed hsbt closed 1 year ago

hsbt commented 1 year ago

Hi, the current instruction is failed like:

$ go install -u github.com/DarthSim/overmind/v2
flag provided but not defined: -u
usage: go install [build flags] [packages]
Run 'go help install' for details.

I fixed it to correct usage of go install.

DarthSim commented 1 year ago

Hi @hsbt! Thank's for your contribution! I changed github.com/DarthSim/overmind@v2 back to github.com/DarthSim/overmind/v2 as github.com/DarthSim/overmind@v2 installs an old version

hsbt commented 1 year ago

Thanks. But the current instruction is also not working.

$ go install github.com/DarthSim/overmind/v2
go: 'go install' requires a version when current directory is not in a module

It should be:

go install github.com/DarthSim/overmind/v2@latest