I created a simple lazy package manager for go. I published it at https://github.com/kfirufk/glpm.
when I execute go get github.com/kfirufk/glpm
I get no errors, but it compiles it as a module since the resulted pkg content at $GOPATH/pkg/darwin_amd64/github.com/kfirufk
is glpm.a
.
I want it to be compiled as an executable. what am I missing?
thanks