virtalabs / tapirx

Free and open-source medical device discovery and identification
GNU General Public License v3.0
28 stars 8 forks source link

Feature/version string #5

Closed ransford closed 5 years ago

ransford commented 5 years ago

Ensures there's always a version string, even when building with go get instead of the Makefile. Before this, we had:

$ go get github.com/virtalabs/tapirx
$ tapirx -version
Tapirx 

(I just confirmed this against the master branch on a Raspberry Pi.)

Now we have whatever's in version.go.

$ go get github.com/virtalabs/tapirx
$ tapirx -version
Tapirx 1.0.0
ukrutt commented 5 years ago

Ooops, yeah, this LGTM. Sorry.