Commit f1970370 authored by Ross Smith II's avatar Ross Smith II

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

fixing version numbers: RCs should be labeled x.x.x-rcx
parents f35b8db4 c6de1564
......@@ -34,7 +34,7 @@ func runCheckpoint(c *config) {
version := Version
if VersionPrerelease != "" {
version += fmt.Sprintf(".%s", VersionPrerelease)
version += fmt.Sprintf("-%s", VersionPrerelease)
}
signaturePath := filepath.Join(configDir, "checkpoint_signature")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment