Hi David, On Tue, Oct 25, 2016 at 09:41:04AM -0400, David G. Simmons wrote: [...] > DSimmons-Pro:newt dsimmons$ ./build.sh > Building newt. This may take a minute... > Successfully built executable: > /Users/dsimmons/dev/go/src/mynewt.apache.org/newt/newt/newt > DSimmons-Pro:newt dsimmons$ > /Users/dsimmons/dev/go/src/mynewt.apache.org/newt/newt/newt version > Apache Newt (incubating) version: 0.9.0 > DSimmons-Pro:newt dsimmons$ which newt > /Users/dsimmons/dev/go/bin/newt
I think this might be the issue. The build.sh script doesn't copy the newt binary to your $GOPATH/bin directory. Instead, it builds it in your current directory. I would recomment not using the build.sh script at all. Instead, just run "go install" from the newt/newt directory. This command will put the built executable at $GOPATH/bin/newt > DSimmons-Pro:newt dsimmons$ newt version > Apache Newt (incubating) version: 0.9.0 Yikes, this is indeed a problem. We should have updated the version string immediately after releasing 0.9.0. Thanks, Chris
