mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-12-25 10:07:35 +01:00
Whoops, damn escape character
This commit is contained in:
parent
d503d2c061
commit
193e93e30a
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -8,7 +8,7 @@ pipeline {
|
|||||||
stage ('prepare') {
|
stage ('prepare') {
|
||||||
steps {
|
steps {
|
||||||
env.CI_SKIP = "false"
|
env.CI_SKIP = "false"
|
||||||
result = sh (script: "git log -1 | grep '(?s).[CI[-\s]SKIP].*'", returnStatus: true)
|
result = sh (script: "git log -1 | grep '(?s).[CI[-\\s]SKIP].*'", returnStatus: true)
|
||||||
if (result == 0) {
|
if (result == 0) {
|
||||||
env.CI_SKIP = "true"
|
env.CI_SKIP = "true"
|
||||||
error "'[CI-SKIP]' found in git commit message. Aborting."
|
error "'[CI-SKIP]' found in git commit message. Aborting."
|
||||||
|
Loading…
Reference in New Issue
Block a user