diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-07-20 12:59:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 12:59:01 -0400 |
commit | e97e2c39488bf9949bfb0f866be3135dfc519521 (patch) | |
tree | 6ec6f2d16df29ec6efe0712ec86152546db5821a /vars | |
parent | 3fa0e0ad33b1af445e55081496fb09b5298c9411 (diff) | |
download | jscu_refactor-e97e2c39488bf9949bfb0f866be3135dfc519521.tar.gz |
Update utils.groovy
Diffstat (limited to 'vars')
-rw-r--r-- | vars/utils.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index 2440e45..03e2dcc 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -16,7 +16,7 @@ def scm_checkout(skip_disable=false) { node("on-master") { stage("Setup") { checkout(scm) - if (skip_disable == 'true') { + if (skip_disable == 'false') { // Obtain the last commit message and examine it for skip directives. logoutput = sh(script:"git log -1 --pretty=%B", returnStdout: true).trim() if (logoutput.contains("[ci skip]") || logoutput.contains("[skip ci]")) { |