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:
commit
f1970370ef
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue