# HG changeset patch # User smith@nwoca.org # Date 1419020712 0 # Node ID 0de8c0720fb4a9187d999fe02daf395f483964d9 # Parent d90208c97ec5e7aaf93539c6331d4d08d950faf0 treat hotfix as release status diff -r d90208c97ec5 -r 0de8c0720fb4 init20.gradle --- a/init20.gradle Fri Dec 19 17:18:59 2014 +0000 +++ b/init20.gradle Fri Dec 19 20:25:12 2014 +0000 @@ -318,12 +318,10 @@ if (gradle.branchStream == 'develop') { fixupVersion = fixupVersion + ".SNAPSHOT" } - if (gradle.branchStream in ['production', 'release']) { - thisProject. - status = 'release' + if (gradle.branchStream in ['production', 'release','hotfix']) { + thisProject.status = 'release' } - thisProject - .version = fixupVersion + thisProject.version = fixupVersion } configurations.all {