I have a tree of golang code. I am using golang 1.5.1 on a Mac (OS X 10.11). I can successfully build my code with the following command with relative paths on the command line.
go install ./...
But, if I use an absolute path, I get an error message. E.g.,
go install `pwd`/...]
warning: "/Users/eben/src/cbq-gui/src/github.com/couchbaselabs/cbq-gui/..." matched no packages
That seems pretty odd, since "." and `pwd` should evaluate to the same thing. What am I missing? Thanks.