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

fixing version numbers RCs should be labeled x.x.x-rcx
pull/684/head
Ryan Uber 10 years ago
commit ebee060dcd

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

Loading…
Cancel
Save