When you run go install, you get a binary named cmd instead of daytona. The solution is put main.go in cmd/daytona/. This will also enable people to go get the library using this command.
GO111MODULE=off go get github.com/cruise-automation/daytona/cmd/daytona
When you run
go install
, you get a binary namedcmd
instead ofdaytona
. The solution is putmain.go
incmd/daytona/
. This will also enable people togo get
the library using this command.