Fixed jenkinsfile problem

This commit is contained in:
Isaac Parenteau
2019-07-21 01:48:29 -05:00
parent f930016ecd
commit 1f2ce4232c

1
Jenkinsfile vendored
View File

@ -45,6 +45,7 @@ def init() {
if (branch_name.indexOf('develop')==0) build_type='develop'
if (branch_name.indexOf('hotfix')==0) build_type='hotfix'
if (branch_name.indexOf('bugfix')==0) build_type='bugfix'
if (branch_name.indexOf('master')==0) build_type='master'
// common pipeline elements
node('master') {