From b8ff3add6b77c7e83f63e6bfa8c60ab0b8e81b5b Mon Sep 17 00:00:00 2001 From: Taylor Dondich Date: Mon, 6 Feb 2017 15:05:42 -0800 Subject: [PATCH] Update Jenkins file to replace periods with dashes in shortname and dbsuffix naming. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b567a76c9..170ca59a7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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}"