Skip to content

Commit

Permalink
update jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Jul 24, 2017
1 parent 840dac1 commit 90f3843
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Expand Up @@ -47,7 +47,8 @@ pipeline {
stage('config-test') {
when {
expression {
return Boolean.parseBoolean(params.runConfigTests)
return params.runConfigTests.toBoolean()
return boolean.parseBoolean(params.runConfigTests)
}
}
steps {
Expand Down

0 comments on commit 90f3843

Please sign in to comment.