Added getVersion() groovy function

This commit is contained in:
Layla 2020-01-31 13:14:26 -05:00
parent 8fe6d81864
commit ce4ef0fa41

14
vars/getVersion.groovy Normal file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env groovy
/**
* Run semver_get_version to return the current version of the repository
*
* @param flags Flags or arguments to pass to semver_get_version
* @return "1.9.2"
*/
def call(flags='') {
def VERSION
VERSION = sh(returnStdout: true, script: "semver_get_version ${flags}")
return VERSION.trim()
}