Update versioningHelper.gradle

This commit is contained in:
Matt
2021-09-24 16:35:56 -04:00
parent 2eb0cbe280
commit 11b4504cd6

View File

@@ -8,7 +8,7 @@ gradle.allprojects {
String tagIsh
try {
exec {
commandLine 'git', 'describe', '--tags', '--exclude="Dev"'
commandLine 'git', 'describe', '--tags', '--exclude="[dD]ev*"'
standardOutput = stdout
}
tagIsh = stdout.toString().trim().toLowerCase()