diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-07-20 14:34:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-20 14:34:58 -0400 |
commit | 9e27561a5ac7eab6893a7cbacc68977ab6cb4abb (patch) | |
tree | 4caa43dc122d67bcc506757249ac307dd4a78f07 /vars | |
parent | b0c40b5e8eee2f43bb249e594ee7d46463c5d0c8 (diff) | |
download | jscu_refactor-9e27561a5ac7eab6893a7cbacc68977ab6cb4abb.tar.gz |
Clean up.1.2.1
Diffstat (limited to 'vars')
-rw-r--r-- | vars/utils.groovy | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index c0d32a4..f955d67 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -21,7 +21,6 @@ def scm_checkout(args = ['skip_disable':false]) { if (args['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() - println(logoutput) if (logoutput.contains("[ci skip]") || logoutput.contains("[skip ci]")) { skip_job = 1 currentBuild.result = 'SUCCESS' |