Merge pull request #680 from sequenceiq/fix-version-check

fixing version numbers RCs should be labeled x.x.x-rcx
This commit is contained in:
Ryan Uber 2015-02-09 00:08:59 -08:00
commit ebee060dcd
1 changed files with 5 additions and 1 deletions

View File

@ -357,9 +357,13 @@ func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *log
// Setup update checking
if !config.DisableUpdateCheck {
version := config.Version
if config.VersionPrerelease != "" {
version += fmt.Sprintf("-%s", config.VersionPrerelease)
}
updateParams := &checkpoint.CheckParams{
Product: "consul",
Version: fmt.Sprintf("%s%s", config.Version, config.VersionPrerelease),
Version: version,
}
if !config.DisableAnonymousSignature {
updateParams.SignatureFile = filepath.Join(config.DataDir, "checkpoint-signature")