feat: revert extraSteps for now

This commit is contained in:
Stefan Reimer 2022-02-14 13:15:52 +01:00
parent 322285e4f4
commit db97da8b42
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
// Common container builder by ZeroDownTime // Common container builder by ZeroDownTime
def call(Map config=[:], Closure extraSteps) { def call(Map config=[:]) {
pipeline { pipeline {
agent { agent {
node { node {
@ -60,7 +60,6 @@ def call(Map config=[:], Closure extraSteps) {
} }
} }
extraSteps()
} }
} }
} }