Update Jenkins file to replace periods with dashes in shortname and dbsuffix naming.

This commit is contained in:
Taylor Dondich
2017-02-06 15:05:42 -08:00
parent 88f31578f3
commit b8ff3add6b

2
Jenkinsfile vendored
View File

@@ -13,7 +13,7 @@ node {
def jiraTicket = env.BRANCH_NAME.find(/HOR-\d+/)
def shortname = env.BRANCH_NAME.replace('/', '-').toLowerCase()
def dbSuffix = shortname.replace('-', '')
def dbSuffix = shortname.replace('-', '').replace('.', '')
echo "Building for ${env.BRANCH_NAME}"