DarthSim / hivemind

Process manager for Procfile-based applications
MIT License
983 stars 29 forks source link

Error installing Hivemind with Go 1.13 #15

Closed look closed 4 years ago

look commented 4 years ago

Running go get github.com/DarthSim/hivemind@v1.0.6 I got the following error:

build github.com/DarthSim/hivemind: cannot load gopkg.in/urfave/cli.v1: cannot find module providing package gopkg.in/urfave/cli.v1

I found a similar bug report and worked around it with replace gopkg.in/urfave/cli.v1 => github.com/urfave/cli v1.19.1 (the same version used in hivemind's go.mod).

https://github.com/DarthSim/hivemind/blob/f67556693e716db78ad03c034bdd340eaad0645c/go.mod#L9

DarthSim commented 4 years ago

Hi, I've replaced it with the version from GitHub, it should work now

look commented 4 years ago

Thank you for the fix!