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

fixing version numbers: RCs should be labeled x.x.x-rcx
This commit is contained in:
Ross Smith II 2015-02-16 10:03:26 -08:00
commit f1970370ef
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ func runCheckpoint(c *config) {
version := Version version := Version
if VersionPrerelease != "" { if VersionPrerelease != "" {
version += fmt.Sprintf(".%s", VersionPrerelease) version += fmt.Sprintf("-%s", VersionPrerelease)
} }
signaturePath := filepath.Join(configDir, "checkpoint_signature") signaturePath := filepath.Join(configDir, "checkpoint_signature")