diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-07-20 13:05:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 13:05:47 -0400 |
commit | a43214e2e4665e54e8f975e428e0e9939743c4f5 (patch) | |
tree | 621faec1bf4529c4b59d1d5c4108fe65d9d073eb | |
parent | e97e2c39488bf9949bfb0f866be3135dfc519521 (diff) | |
download | jscu_refactor-a43214e2e4665e54e8f975e428e0e9939743c4f5.tar.gz |
Add some debug output
-rw-r--r-- | vars/utils.groovy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index 03e2dcc..77c7538 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -16,6 +16,7 @@ def scm_checkout(skip_disable=false) { node("on-master") { stage("Setup") { checkout(scm) + println("skip_disable = ${skip_disable}") 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() |