build SNAPSHOT version ,Is the logic wrong?
zhangwenhao2013 opened this issue · comments
wenhao commented
def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }
def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") }
gsprdev commented
No. If the version name has a "SNAPSHOT" suffix it is, by definition, not a "release" build.
def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }
determines whether SNAPSHOT
is absent from the version name. The logic is correct.