Use go install without path in integration scripts
In the integration scripts stboot was installed using
go install ./stboot.go
which caused the version info in info.Main.Version used in getVersion() to become empty.
Changing that to use go install without any path, so that the version information becomes correct.